Class: RailsAiBridge::Registry::ResolvedSkill
- Inherits:
-
Data
- Object
- Data
- RailsAiBridge::Registry::ResolvedSkill
- Defined in:
- lib/rails_ai_bridge/registry/resolver.rb
Overview
A resolved skill or agent, containing its content and metadata.
Instance Attribute Summary collapse
-
#content ⇒ String
readonly
Complete text content of the markdown file.
-
#name ⇒ String
readonly
Name of the resolved skill/agent.
-
#pack ⇒ String
readonly
Pack from which it was resolved.
-
#path ⇒ String
readonly
Absolute filesystem path to the markdown file.
Instance Attribute Details
#content ⇒ String (readonly)
Returns complete text content of the markdown file.
29 |
# File 'lib/rails_ai_bridge/registry/resolver.rb', line 29 ResolvedSkill = Data.define(:name, :pack, :path, :content) |
#name ⇒ String (readonly)
Returns name of the resolved skill/agent.
29 |
# File 'lib/rails_ai_bridge/registry/resolver.rb', line 29 ResolvedSkill = Data.define(:name, :pack, :path, :content) |
#pack ⇒ String (readonly)
Returns pack from which it was resolved.
29 |
# File 'lib/rails_ai_bridge/registry/resolver.rb', line 29 ResolvedSkill = Data.define(:name, :pack, :path, :content) |
#path ⇒ String (readonly)
Returns absolute filesystem path to the markdown file.
29 |
# File 'lib/rails_ai_bridge/registry/resolver.rb', line 29 ResolvedSkill = Data.define(:name, :pack, :path, :content) |