agentic 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.agentic.yml +2 -0
- data/.architecture/decisions/ArchitecturalFeatureBuilder.md +136 -0
- data/.architecture/decisions/ArchitectureConsiderations.md +200 -0
- data/.architecture/decisions/adr_001_observer_pattern_implementation.md +196 -0
- data/.architecture/decisions/adr_002_plan_orchestrator.md +320 -0
- data/.architecture/decisions/adr_003_plan_orchestrator_interface.md +179 -0
- data/.architecture/decisions/adrs/ADR-001-dependency-management.md +147 -0
- data/.architecture/decisions/adrs/ADR-002-system-boundaries.md +162 -0
- data/.architecture/decisions/adrs/ADR-003-content-safety.md +158 -0
- data/.architecture/decisions/adrs/ADR-004-agent-permissions.md +161 -0
- data/.architecture/decisions/adrs/ADR-005-adaptation-engine.md +127 -0
- data/.architecture/decisions/adrs/ADR-006-extension-system.md +273 -0
- data/.architecture/decisions/adrs/ADR-007-learning-system.md +156 -0
- data/.architecture/decisions/adrs/ADR-008-prompt-generation.md +325 -0
- data/.architecture/decisions/adrs/ADR-009-task-failure-handling.md +353 -0
- data/.architecture/decisions/adrs/ADR-010-task-input-handling.md +251 -0
- data/.architecture/decisions/adrs/ADR-011-task-observable-pattern.md +391 -0
- data/.architecture/decisions/adrs/ADR-012-task-output-handling.md +205 -0
- data/.architecture/decisions/adrs/ADR-013-architecture-alignment.md +211 -0
- data/.architecture/decisions/adrs/ADR-014-agent-capability-registry.md +80 -0
- data/.architecture/decisions/adrs/ADR-015-persistent-agent-store.md +100 -0
- data/.architecture/decisions/adrs/ADR-016-agent-assembly-engine.md +117 -0
- data/.architecture/decisions/adrs/ADR-017-streaming-observability.md +171 -0
- data/.architecture/decisions/capability_tools_distinction.md +150 -0
- data/.architecture/decisions/cli_command_structure.md +61 -0
- data/.architecture/implementation/agent_self_assembly_implementation.md +267 -0
- data/.architecture/implementation/agent_self_assembly_summary.md +138 -0
- data/.architecture/members.yml +187 -0
- data/.architecture/planning/self_implementation_exercise.md +295 -0
- data/.architecture/planning/session_compaction_rule.md +43 -0
- data/.architecture/planning/streaming_observability_feature.md +223 -0
- data/.architecture/principles.md +151 -0
- data/.architecture/recalibration/0-2-0.md +92 -0
- data/.architecture/recalibration/agent_self_assembly.md +238 -0
- data/.architecture/recalibration/cli_command_structure.md +91 -0
- data/.architecture/recalibration/implementation_roadmap_0-2-0.md +301 -0
- data/.architecture/recalibration/progress_tracking_0-2-0.md +114 -0
- data/.architecture/recalibration_process.md +127 -0
- data/.architecture/reviews/0-2-0.md +181 -0
- data/.architecture/reviews/cli_command_duplication.md +98 -0
- data/.architecture/templates/adr.md +105 -0
- data/.architecture/templates/implementation_roadmap.md +125 -0
- data/.architecture/templates/progress_tracking.md +89 -0
- data/.architecture/templates/recalibration_plan.md +70 -0
- data/.architecture/templates/version_comparison.md +124 -0
- data/.claude/settings.local.json +13 -0
- data/.claude-sessions/001-task-class-architecture-implementation.md +129 -0
- data/.claude-sessions/002-plan-orchestrator-interface-review.md +105 -0
- data/.claude-sessions/architecture-governance-implementation.md +37 -0
- data/.claude-sessions/architecture-review-session.md +27 -0
- data/ArchitecturalFeatureBuilder.md +136 -0
- data/ArchitectureConsiderations.md +229 -0
- data/CHANGELOG.md +57 -2
- data/CLAUDE.md +111 -0
- data/CONTRIBUTING.md +286 -0
- data/MAINTAINING.md +301 -0
- data/README.md +582 -28
- data/docs/agent_capabilities_api.md +259 -0
- data/docs/artifact_extension_points.md +757 -0
- data/docs/artifact_generation_architecture.md +323 -0
- data/docs/artifact_implementation_plan.md +596 -0
- data/docs/artifact_integration_points.md +345 -0
- data/docs/artifact_verification_strategies.md +581 -0
- data/docs/streaming_observability_architecture.md +510 -0
- data/exe/agentic +6 -1
- data/lefthook.yml +5 -0
- data/lib/agentic/adaptation_engine.rb +124 -0
- data/lib/agentic/agent.rb +181 -4
- data/lib/agentic/agent_assembly_engine.rb +442 -0
- data/lib/agentic/agent_capability_registry.rb +260 -0
- data/lib/agentic/agent_config.rb +63 -0
- data/lib/agentic/agent_specification.rb +46 -0
- data/lib/agentic/capabilities/examples.rb +530 -0
- data/lib/agentic/capabilities.rb +14 -0
- data/lib/agentic/capability_provider.rb +146 -0
- data/lib/agentic/capability_specification.rb +118 -0
- data/lib/agentic/cli/agent.rb +31 -0
- data/lib/agentic/cli/capabilities.rb +191 -0
- data/lib/agentic/cli/config.rb +134 -0
- data/lib/agentic/cli/execution_observer.rb +796 -0
- data/lib/agentic/cli.rb +1068 -0
- data/lib/agentic/default_agent_provider.rb +35 -0
- data/lib/agentic/errors/llm_error.rb +184 -0
- data/lib/agentic/execution_plan.rb +53 -0
- data/lib/agentic/execution_result.rb +91 -0
- data/lib/agentic/expected_answer_format.rb +46 -0
- data/lib/agentic/extension/domain_adapter.rb +109 -0
- data/lib/agentic/extension/plugin_manager.rb +163 -0
- data/lib/agentic/extension/protocol_handler.rb +116 -0
- data/lib/agentic/extension.rb +45 -0
- data/lib/agentic/factory_methods.rb +9 -1
- data/lib/agentic/generation_stats.rb +61 -0
- data/lib/agentic/learning/README.md +84 -0
- data/lib/agentic/learning/capability_optimizer.rb +613 -0
- data/lib/agentic/learning/execution_history_store.rb +251 -0
- data/lib/agentic/learning/pattern_recognizer.rb +500 -0
- data/lib/agentic/learning/strategy_optimizer.rb +706 -0
- data/lib/agentic/learning.rb +131 -0
- data/lib/agentic/llm_assisted_composition_strategy.rb +188 -0
- data/lib/agentic/llm_client.rb +215 -15
- data/lib/agentic/llm_config.rb +65 -1
- data/lib/agentic/llm_response.rb +163 -0
- data/lib/agentic/logger.rb +1 -1
- data/lib/agentic/observable.rb +51 -0
- data/lib/agentic/persistent_agent_store.rb +385 -0
- data/lib/agentic/plan_execution_result.rb +129 -0
- data/lib/agentic/plan_orchestrator.rb +464 -0
- data/lib/agentic/plan_orchestrator_config.rb +57 -0
- data/lib/agentic/retry_config.rb +63 -0
- data/lib/agentic/retry_handler.rb +125 -0
- data/lib/agentic/structured_outputs.rb +1 -1
- data/lib/agentic/task.rb +193 -0
- data/lib/agentic/task_definition.rb +39 -0
- data/lib/agentic/task_execution_result.rb +92 -0
- data/lib/agentic/task_failure.rb +66 -0
- data/lib/agentic/task_output_schemas.rb +112 -0
- data/lib/agentic/task_planner.rb +54 -19
- data/lib/agentic/task_result.rb +48 -0
- data/lib/agentic/ui.rb +244 -0
- data/lib/agentic/verification/critic_framework.rb +116 -0
- data/lib/agentic/verification/llm_verification_strategy.rb +60 -0
- data/lib/agentic/verification/schema_verification_strategy.rb +47 -0
- data/lib/agentic/verification/verification_hub.rb +62 -0
- data/lib/agentic/verification/verification_result.rb +50 -0
- data/lib/agentic/verification/verification_strategy.rb +26 -0
- data/lib/agentic/version.rb +1 -1
- data/lib/agentic.rb +74 -2
- data/plugins/README.md +41 -0
- metadata +245 -6
@@ -0,0 +1,50 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Agentic
|
4
|
+
module Verification
|
5
|
+
# Represents the result of a verification process
|
6
|
+
class VerificationResult
|
7
|
+
# @return [String] The ID of the task that was verified
|
8
|
+
attr_reader :task_id
|
9
|
+
|
10
|
+
# @return [Boolean] Whether the verification passed
|
11
|
+
attr_reader :verified
|
12
|
+
|
13
|
+
# @return [Float] The confidence score (0.0-1.0) of the verification
|
14
|
+
attr_reader :confidence
|
15
|
+
|
16
|
+
# @return [Array<String>] Messages from the verification process
|
17
|
+
attr_reader :messages
|
18
|
+
|
19
|
+
# Initializes a new VerificationResult
|
20
|
+
# @param task_id [String] The ID of the task that was verified
|
21
|
+
# @param verified [Boolean] Whether the verification passed
|
22
|
+
# @param confidence [Float] The confidence score (0.0-1.0) of the verification
|
23
|
+
# @param messages [Array<String>] Messages from the verification process
|
24
|
+
def initialize(task_id:, verified:, confidence:, messages: [])
|
25
|
+
@task_id = task_id
|
26
|
+
@verified = verified
|
27
|
+
@confidence = confidence
|
28
|
+
@messages = messages
|
29
|
+
end
|
30
|
+
|
31
|
+
# Checks if the verification passed with high confidence
|
32
|
+
# @param threshold [Float] The confidence threshold
|
33
|
+
# @return [Boolean] Whether verification passed with confidence above the threshold
|
34
|
+
def verified_with_confidence?(threshold: 0.8)
|
35
|
+
@verified && @confidence >= threshold
|
36
|
+
end
|
37
|
+
|
38
|
+
# Converts the verification result to a hash
|
39
|
+
# @return [Hash] The verification result as a hash
|
40
|
+
def to_h
|
41
|
+
{
|
42
|
+
task_id: @task_id,
|
43
|
+
verified: @verified,
|
44
|
+
confidence: @confidence,
|
45
|
+
messages: @messages
|
46
|
+
}
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Agentic
|
4
|
+
module Verification
|
5
|
+
# Base class for verification strategies
|
6
|
+
class VerificationStrategy
|
7
|
+
# @return [Hash] Configuration options for the strategy
|
8
|
+
attr_reader :config
|
9
|
+
|
10
|
+
# Initializes a new VerificationStrategy
|
11
|
+
# @param config [Hash] Configuration options for the strategy
|
12
|
+
def initialize(config = {})
|
13
|
+
@config = config
|
14
|
+
end
|
15
|
+
|
16
|
+
# Verifies a task result
|
17
|
+
# @param task [Task] The task to verify
|
18
|
+
# @param result [TaskResult] The result to verify
|
19
|
+
# @return [VerificationResult] The verification result
|
20
|
+
# @raise [NotImplementedError] This method must be implemented by subclasses
|
21
|
+
def verify(task, result)
|
22
|
+
raise NotImplementedError, "Subclasses must implement verify"
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
data/lib/agentic/version.rb
CHANGED
data/lib/agentic.rb
CHANGED
@@ -2,8 +2,29 @@
|
|
2
2
|
|
3
3
|
require "zeitwerk"
|
4
4
|
loader = Zeitwerk::Loader.for_gem
|
5
|
+
|
6
|
+
# Configure Zeitwerk to handle the CLI class name properly
|
7
|
+
loader.inflector.inflect(
|
8
|
+
"cli" => "CLI"
|
9
|
+
)
|
10
|
+
|
11
|
+
# Configure paths that need to be eager loaded or excluded from Zeitwerk
|
12
|
+
loader.do_not_eager_load("#{__dir__}/agentic/cli")
|
13
|
+
|
5
14
|
loader.setup
|
6
15
|
|
16
|
+
# Explicitly require Thor-related components to avoid Zeitwerk issues with Thor
|
17
|
+
# Thor requires subcommands to be loaded before they're referenced
|
18
|
+
require_relative "agentic/ui"
|
19
|
+
require_relative "agentic/default_agent_provider"
|
20
|
+
require_relative "agentic/cli"
|
21
|
+
require_relative "agentic/cli/execution_observer"
|
22
|
+
require_relative "agentic/extension"
|
23
|
+
require_relative "agentic/capabilities"
|
24
|
+
require_relative "agentic/agent_assembly_engine"
|
25
|
+
require_relative "agentic/llm_assisted_composition_strategy"
|
26
|
+
require_relative "agentic/task_output_schemas"
|
27
|
+
|
7
28
|
module Agentic
|
8
29
|
class Error < StandardError; end
|
9
30
|
|
@@ -14,15 +35,18 @@ module Agentic
|
|
14
35
|
self.logger ||= Logger.new($stdout, level: :debug)
|
15
36
|
|
16
37
|
class Configuration
|
17
|
-
attr_accessor :access_token
|
38
|
+
attr_accessor :access_token, :agent_store_path, :api_base_url
|
18
39
|
|
19
40
|
def initialize
|
20
|
-
@access_token = ENV["OPENAI_ACCESS_TOKEN"]
|
41
|
+
@access_token = ENV["OPENAI_ACCESS_TOKEN"] || ENV["AGENTIC_API_TOKEN"] || "ollama"
|
42
|
+
@agent_store_path = ENV["AGENTIC_AGENT_STORE_PATH"] || File.join(Dir.home, ".agentic", "agents")
|
43
|
+
@api_base_url = ENV["AGENTIC_API_BASE_URL"] || ENV["OPENAI_BASE_URL"]
|
21
44
|
end
|
22
45
|
end
|
23
46
|
|
24
47
|
class << self
|
25
48
|
attr_writer :configuration
|
49
|
+
attr_reader :agent_capability_registry, :agent_assembly_engine, :agent_store
|
26
50
|
end
|
27
51
|
|
28
52
|
def self.configuration
|
@@ -36,4 +60,52 @@ module Agentic
|
|
36
60
|
def self.client(config)
|
37
61
|
LlmClient.new(config)
|
38
62
|
end
|
63
|
+
|
64
|
+
# Initialize the core agent self-assembly components
|
65
|
+
def self.initialize_agent_assembly
|
66
|
+
# Create registry, store, and assembly engine if not already initialized
|
67
|
+
unless @agent_capability_registry
|
68
|
+
@agent_capability_registry = AgentCapabilityRegistry.instance
|
69
|
+
@agent_store = PersistentAgentStore.new(configuration.agent_store_path, @agent_capability_registry)
|
70
|
+
@agent_assembly_engine = AgentAssemblyEngine.new(@agent_capability_registry, @agent_store)
|
71
|
+
|
72
|
+
# Register standard capabilities
|
73
|
+
Capabilities.register_standard_capabilities
|
74
|
+
|
75
|
+
logger.info("Initialized agent assembly system")
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
# Register a capability with the system
|
80
|
+
# @param capability [CapabilitySpecification] The capability to register
|
81
|
+
# @param provider [CapabilityProvider] The provider for the capability
|
82
|
+
# @return [CapabilitySpecification] The registered capability
|
83
|
+
def self.register_capability(capability, provider)
|
84
|
+
initialize_agent_assembly
|
85
|
+
@agent_capability_registry.register(capability, provider)
|
86
|
+
end
|
87
|
+
|
88
|
+
# Assemble an agent for a task
|
89
|
+
# @param task [Task] The task to assemble an agent for
|
90
|
+
# @param strategy [AgentCompositionStrategy, nil] The strategy to use
|
91
|
+
# @param store [Boolean] Whether to use the agent store
|
92
|
+
# @param use_llm [Boolean] Whether to use LLM-assisted strategy if no strategy provided
|
93
|
+
# @return [Agent] The assembled agent
|
94
|
+
def self.assemble_agent(task, strategy: nil, store: true, use_llm: false)
|
95
|
+
initialize_agent_assembly
|
96
|
+
|
97
|
+
# Use LLM-assisted strategy if requested and no strategy provided
|
98
|
+
if use_llm && strategy.nil?
|
99
|
+
strategy = LlmAssistedCompositionStrategy.new
|
100
|
+
end
|
101
|
+
|
102
|
+
@agent_assembly_engine.assemble_agent(task, strategy: strategy, store: store)
|
103
|
+
end
|
104
|
+
|
105
|
+
# Create an LLM-assisted composition strategy
|
106
|
+
# @param llm_config [LlmConfig, nil] The LLM config to use
|
107
|
+
# @return [LlmAssistedCompositionStrategy] The strategy
|
108
|
+
def self.llm_assisted_strategy(llm_config = nil)
|
109
|
+
LlmAssistedCompositionStrategy.new(llm_config)
|
110
|
+
end
|
39
111
|
end
|
data/plugins/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# Agentic Plugins
|
2
|
+
|
3
|
+
This directory contains plugins for the Agentic framework. Plugins provide additional functionality that can be loaded by the `Agentic::Extension::PluginManager`.
|
4
|
+
|
5
|
+
## Creating a Plugin
|
6
|
+
|
7
|
+
A valid plugin must implement the following interface:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
class ExamplePlugin
|
11
|
+
# Initialize the plugin with configuration options
|
12
|
+
def initialize_plugin(config = {})
|
13
|
+
# Initialize plugin with config
|
14
|
+
end
|
15
|
+
|
16
|
+
# Execute the plugin functionality
|
17
|
+
def call(*args)
|
18
|
+
# Plugin functionality
|
19
|
+
end
|
20
|
+
end
|
21
|
+
```
|
22
|
+
|
23
|
+
## Loading Plugins
|
24
|
+
|
25
|
+
Plugins in this directory are automatically discovered and loaded by the `PluginManager` if auto-discovery is enabled (which is the default behavior).
|
26
|
+
|
27
|
+
You can also manually register plugins:
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
plugin_manager = Agentic::Extension.plugin_manager
|
31
|
+
plugin_manager.register("my_plugin", MyPlugin.new, { version: "1.0.0" })
|
32
|
+
```
|
33
|
+
|
34
|
+
## Using Plugins
|
35
|
+
|
36
|
+
To use a registered plugin:
|
37
|
+
|
38
|
+
```ruby
|
39
|
+
plugin = Agentic::Extension.plugin_manager.get("my_plugin")
|
40
|
+
plugin.call(arg1, arg2) if plugin
|
41
|
+
```
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: agentic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Valentino Stoll
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: dry-schema
|
@@ -52,6 +51,132 @@ dependencies:
|
|
52
51
|
- - ">="
|
53
52
|
- !ruby/object:Gem::Version
|
54
53
|
version: '0'
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: async
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '2.0'
|
61
|
+
type: :runtime
|
62
|
+
prerelease: false
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '2.0'
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
name: thor
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '1.2'
|
75
|
+
type: :runtime
|
76
|
+
prerelease: false
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '1.2'
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: tty-spinner
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0.9'
|
89
|
+
type: :runtime
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0.9'
|
96
|
+
- !ruby/object:Gem::Dependency
|
97
|
+
name: tty-progressbar
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0.18'
|
103
|
+
type: :runtime
|
104
|
+
prerelease: false
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0.18'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: tty-box
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - "~>"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0.7'
|
117
|
+
type: :runtime
|
118
|
+
prerelease: false
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - "~>"
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: '0.7'
|
124
|
+
- !ruby/object:Gem::Dependency
|
125
|
+
name: tty-table
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - "~>"
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0.12'
|
131
|
+
type: :runtime
|
132
|
+
prerelease: false
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - "~>"
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '0.12'
|
138
|
+
- !ruby/object:Gem::Dependency
|
139
|
+
name: tty-cursor
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - "~>"
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '0.7'
|
145
|
+
type: :runtime
|
146
|
+
prerelease: false
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - "~>"
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0.7'
|
152
|
+
- !ruby/object:Gem::Dependency
|
153
|
+
name: pastel
|
154
|
+
requirement: !ruby/object:Gem::Requirement
|
155
|
+
requirements:
|
156
|
+
- - "~>"
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '0.8'
|
159
|
+
type: :runtime
|
160
|
+
prerelease: false
|
161
|
+
version_requirements: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - "~>"
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '0.8'
|
166
|
+
- !ruby/object:Gem::Dependency
|
167
|
+
name: ostruct
|
168
|
+
requirement: !ruby/object:Gem::Requirement
|
169
|
+
requirements:
|
170
|
+
- - ">="
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: '0'
|
173
|
+
type: :runtime
|
174
|
+
prerelease: false
|
175
|
+
version_requirements: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - ">="
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0'
|
55
180
|
description: Easily build, manage, deploy, and run self-contained purpose-driven AI
|
56
181
|
Agents.
|
57
182
|
email:
|
@@ -61,24 +186,140 @@ executables:
|
|
61
186
|
extensions: []
|
62
187
|
extra_rdoc_files: []
|
63
188
|
files:
|
189
|
+
- ".agentic.yml"
|
190
|
+
- ".architecture/decisions/ArchitecturalFeatureBuilder.md"
|
191
|
+
- ".architecture/decisions/ArchitectureConsiderations.md"
|
192
|
+
- ".architecture/decisions/adr_001_observer_pattern_implementation.md"
|
193
|
+
- ".architecture/decisions/adr_002_plan_orchestrator.md"
|
194
|
+
- ".architecture/decisions/adr_003_plan_orchestrator_interface.md"
|
195
|
+
- ".architecture/decisions/adrs/ADR-001-dependency-management.md"
|
196
|
+
- ".architecture/decisions/adrs/ADR-002-system-boundaries.md"
|
197
|
+
- ".architecture/decisions/adrs/ADR-003-content-safety.md"
|
198
|
+
- ".architecture/decisions/adrs/ADR-004-agent-permissions.md"
|
199
|
+
- ".architecture/decisions/adrs/ADR-005-adaptation-engine.md"
|
200
|
+
- ".architecture/decisions/adrs/ADR-006-extension-system.md"
|
201
|
+
- ".architecture/decisions/adrs/ADR-007-learning-system.md"
|
202
|
+
- ".architecture/decisions/adrs/ADR-008-prompt-generation.md"
|
203
|
+
- ".architecture/decisions/adrs/ADR-009-task-failure-handling.md"
|
204
|
+
- ".architecture/decisions/adrs/ADR-010-task-input-handling.md"
|
205
|
+
- ".architecture/decisions/adrs/ADR-011-task-observable-pattern.md"
|
206
|
+
- ".architecture/decisions/adrs/ADR-012-task-output-handling.md"
|
207
|
+
- ".architecture/decisions/adrs/ADR-013-architecture-alignment.md"
|
208
|
+
- ".architecture/decisions/adrs/ADR-014-agent-capability-registry.md"
|
209
|
+
- ".architecture/decisions/adrs/ADR-015-persistent-agent-store.md"
|
210
|
+
- ".architecture/decisions/adrs/ADR-016-agent-assembly-engine.md"
|
211
|
+
- ".architecture/decisions/adrs/ADR-017-streaming-observability.md"
|
212
|
+
- ".architecture/decisions/capability_tools_distinction.md"
|
213
|
+
- ".architecture/decisions/cli_command_structure.md"
|
214
|
+
- ".architecture/implementation/agent_self_assembly_implementation.md"
|
215
|
+
- ".architecture/implementation/agent_self_assembly_summary.md"
|
216
|
+
- ".architecture/members.yml"
|
217
|
+
- ".architecture/planning/self_implementation_exercise.md"
|
218
|
+
- ".architecture/planning/session_compaction_rule.md"
|
219
|
+
- ".architecture/planning/streaming_observability_feature.md"
|
220
|
+
- ".architecture/principles.md"
|
221
|
+
- ".architecture/recalibration/0-2-0.md"
|
222
|
+
- ".architecture/recalibration/agent_self_assembly.md"
|
223
|
+
- ".architecture/recalibration/cli_command_structure.md"
|
224
|
+
- ".architecture/recalibration/implementation_roadmap_0-2-0.md"
|
225
|
+
- ".architecture/recalibration/progress_tracking_0-2-0.md"
|
226
|
+
- ".architecture/recalibration_process.md"
|
227
|
+
- ".architecture/reviews/0-2-0.md"
|
228
|
+
- ".architecture/reviews/cli_command_duplication.md"
|
229
|
+
- ".architecture/templates/adr.md"
|
230
|
+
- ".architecture/templates/implementation_roadmap.md"
|
231
|
+
- ".architecture/templates/progress_tracking.md"
|
232
|
+
- ".architecture/templates/recalibration_plan.md"
|
233
|
+
- ".architecture/templates/version_comparison.md"
|
234
|
+
- ".claude-sessions/001-task-class-architecture-implementation.md"
|
235
|
+
- ".claude-sessions/002-plan-orchestrator-interface-review.md"
|
236
|
+
- ".claude-sessions/architecture-governance-implementation.md"
|
237
|
+
- ".claude-sessions/architecture-review-session.md"
|
238
|
+
- ".claude/settings.local.json"
|
64
239
|
- ".rspec"
|
65
240
|
- ".rubocop.yml"
|
66
241
|
- ".standard.yml"
|
242
|
+
- ArchitecturalFeatureBuilder.md
|
243
|
+
- ArchitectureConsiderations.md
|
67
244
|
- CHANGELOG.md
|
245
|
+
- CLAUDE.md
|
68
246
|
- CODE_OF_CONDUCT.md
|
247
|
+
- CONTRIBUTING.md
|
69
248
|
- LICENSE.txt
|
249
|
+
- MAINTAINING.md
|
70
250
|
- README.md
|
71
251
|
- Rakefile
|
252
|
+
- docs/agent_capabilities_api.md
|
253
|
+
- docs/artifact_extension_points.md
|
254
|
+
- docs/artifact_generation_architecture.md
|
255
|
+
- docs/artifact_implementation_plan.md
|
256
|
+
- docs/artifact_integration_points.md
|
257
|
+
- docs/artifact_verification_strategies.md
|
258
|
+
- docs/streaming_observability_architecture.md
|
72
259
|
- exe/agentic
|
260
|
+
- lefthook.yml
|
73
261
|
- lib/agentic.rb
|
262
|
+
- lib/agentic/adaptation_engine.rb
|
74
263
|
- lib/agentic/agent.rb
|
264
|
+
- lib/agentic/agent_assembly_engine.rb
|
265
|
+
- lib/agentic/agent_capability_registry.rb
|
266
|
+
- lib/agentic/agent_config.rb
|
267
|
+
- lib/agentic/agent_specification.rb
|
268
|
+
- lib/agentic/capabilities.rb
|
269
|
+
- lib/agentic/capabilities/examples.rb
|
270
|
+
- lib/agentic/capability_provider.rb
|
271
|
+
- lib/agentic/capability_specification.rb
|
272
|
+
- lib/agentic/cli.rb
|
273
|
+
- lib/agentic/cli/agent.rb
|
274
|
+
- lib/agentic/cli/capabilities.rb
|
275
|
+
- lib/agentic/cli/config.rb
|
276
|
+
- lib/agentic/cli/execution_observer.rb
|
277
|
+
- lib/agentic/default_agent_provider.rb
|
278
|
+
- lib/agentic/errors/llm_error.rb
|
279
|
+
- lib/agentic/execution_plan.rb
|
280
|
+
- lib/agentic/execution_result.rb
|
281
|
+
- lib/agentic/expected_answer_format.rb
|
282
|
+
- lib/agentic/extension.rb
|
283
|
+
- lib/agentic/extension/domain_adapter.rb
|
284
|
+
- lib/agentic/extension/plugin_manager.rb
|
285
|
+
- lib/agentic/extension/protocol_handler.rb
|
75
286
|
- lib/agentic/factory_methods.rb
|
287
|
+
- lib/agentic/generation_stats.rb
|
288
|
+
- lib/agentic/learning.rb
|
289
|
+
- lib/agentic/learning/README.md
|
290
|
+
- lib/agentic/learning/capability_optimizer.rb
|
291
|
+
- lib/agentic/learning/execution_history_store.rb
|
292
|
+
- lib/agentic/learning/pattern_recognizer.rb
|
293
|
+
- lib/agentic/learning/strategy_optimizer.rb
|
294
|
+
- lib/agentic/llm_assisted_composition_strategy.rb
|
76
295
|
- lib/agentic/llm_client.rb
|
77
296
|
- lib/agentic/llm_config.rb
|
297
|
+
- lib/agentic/llm_response.rb
|
78
298
|
- lib/agentic/logger.rb
|
299
|
+
- lib/agentic/observable.rb
|
300
|
+
- lib/agentic/persistent_agent_store.rb
|
301
|
+
- lib/agentic/plan_execution_result.rb
|
302
|
+
- lib/agentic/plan_orchestrator.rb
|
303
|
+
- lib/agentic/plan_orchestrator_config.rb
|
304
|
+
- lib/agentic/retry_config.rb
|
305
|
+
- lib/agentic/retry_handler.rb
|
79
306
|
- lib/agentic/structured_outputs.rb
|
307
|
+
- lib/agentic/task.rb
|
308
|
+
- lib/agentic/task_definition.rb
|
309
|
+
- lib/agentic/task_execution_result.rb
|
310
|
+
- lib/agentic/task_failure.rb
|
311
|
+
- lib/agentic/task_output_schemas.rb
|
80
312
|
- lib/agentic/task_planner.rb
|
313
|
+
- lib/agentic/task_result.rb
|
314
|
+
- lib/agentic/ui.rb
|
315
|
+
- lib/agentic/verification/critic_framework.rb
|
316
|
+
- lib/agentic/verification/llm_verification_strategy.rb
|
317
|
+
- lib/agentic/verification/schema_verification_strategy.rb
|
318
|
+
- lib/agentic/verification/verification_hub.rb
|
319
|
+
- lib/agentic/verification/verification_result.rb
|
320
|
+
- lib/agentic/verification/verification_strategy.rb
|
81
321
|
- lib/agentic/version.rb
|
322
|
+
- plugins/README.md
|
82
323
|
- sig/agentic/builder.rbs
|
83
324
|
homepage: https://github.com/codenamev/agentic
|
84
325
|
licenses:
|
@@ -88,7 +329,6 @@ metadata:
|
|
88
329
|
source_code_uri: https://github.com/codenamev/agentic
|
89
330
|
changelog_uri: https://github.com/codenamev/agentic/tree/main/CHANGELOG.md
|
90
331
|
allowed_push_host: https://rubygems.org
|
91
|
-
post_install_message:
|
92
332
|
rdoc_options: []
|
93
333
|
require_paths:
|
94
334
|
- lib
|
@@ -103,8 +343,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
343
|
- !ruby/object:Gem::Version
|
104
344
|
version: '0'
|
105
345
|
requirements: []
|
106
|
-
rubygems_version: 3.
|
107
|
-
signing_key:
|
346
|
+
rubygems_version: 3.6.9
|
108
347
|
specification_version: 4
|
109
348
|
summary: An AI Agent builder and orchestrator
|
110
349
|
test_files: []
|