Class: RailsAiBridge::Registry::AgentEntry
- Inherits:
-
Data
- Object
- Data
- RailsAiBridge::Registry::AgentEntry
- Defined in:
- lib/rails_ai_bridge/registry/tile_manifest.rb
Overview
Metadata entry for an agent/workflow inside a pack's tile manifest.
Instance Attribute Summary collapse
-
#depends_on ⇒ Array<String>
readonly
Skill names this agent depends on.
-
#description ⇒ String?
readonly
Optional description.
-
#path ⇒ String
readonly
Relative path to the agent markdown file.
Instance Attribute Details
#depends_on ⇒ Array<String> (readonly)
Returns skill names this agent depends on.
23 |
# File 'lib/rails_ai_bridge/registry/tile_manifest.rb', line 23 AgentEntry = Data.define(:path, :description, :depends_on) |
#description ⇒ String? (readonly)
Returns optional description.
23 |
# File 'lib/rails_ai_bridge/registry/tile_manifest.rb', line 23 AgentEntry = Data.define(:path, :description, :depends_on) |
#path ⇒ String (readonly)
Returns relative path to the agent markdown file.
23 |
# File 'lib/rails_ai_bridge/registry/tile_manifest.rb', line 23 AgentEntry = Data.define(:path, :description, :depends_on) |