Class: RailsClaudeSkills::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/rails_claude_skills.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



21
22
23
24
25
# File 'lib/rails_claude_skills.rb', line 21

def initialize
  @skills_path = ".claude/skills"
  @agents_path = ".claude/agents"
  @default_model = "sonnet"
end

Instance Attribute Details

#agents_pathObject

Returns the value of attribute agents_path.



19
20
21
# File 'lib/rails_claude_skills.rb', line 19

def agents_path
  @agents_path
end

#default_modelObject

Returns the value of attribute default_model.



19
20
21
# File 'lib/rails_claude_skills.rb', line 19

def default_model
  @default_model
end

#skills_pathObject

Returns the value of attribute skills_path.



19
20
21
# File 'lib/rails_claude_skills.rb', line 19

def skills_path
  @skills_path
end