Class: RailsAiContext::Serializers::ClaudeSerializer

Inherits:
Object
  • Object
show all
Includes:
CompactSerializerHelper, StackOverviewHelper, TestCommandDetection, ToolGuideHelper
Defined in:
lib/rails_ai_context/serializers/claude_serializer.rb

Overview

Generates CLAUDE.md optimized for Claude Code. In :compact mode (default), produces ≤150 lines with MCP tool references. In :full mode, delegates to MarkdownSerializer with behavioral rules.

Constant Summary

Constants included from ToolGuideHelper

ToolGuideHelper::TOOL_ROWS

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from ToolGuideHelper

#build_tools_table, #render_tools_guide, #render_tools_guide_compact, #tool_call, #tool_count, #tool_mode, #tools_anti_hallucination_section, #tools_antipatterns_section, #tools_detail_guidance, #tools_header, #tools_intro, #tools_name_list, #tools_power_tool_section, #tools_rules_section, #tools_table, #tools_workflow_section

Methods included from StackOverviewHelper

#arch_labels_hash, #detect_before_actions, #detect_job_files, #detect_service_files, #full_preset_stack_lines, #model_extras_line, #notable_gems_list, #pattern_labels_hash, #project_root, #render_compact_controllers_list, #scope_names, #write_rule_files

Constructor Details

#initialize(context) ⇒ ClaudeSerializer

Returns a new instance of ClaudeSerializer.



16
17
18
# File 'lib/rails_ai_context/serializers/claude_serializer.rb', line 16

def initialize(context)
  @context = context
end

Instance Attribute Details

#contextObject (readonly)

Returns the value of attribute context.



14
15
16
# File 'lib/rails_ai_context/serializers/claude_serializer.rb', line 14

def context
  @context
end

Instance Method Details

#callObject



20
21
22
23
24
25
26
# File 'lib/rails_ai_context/serializers/claude_serializer.rb', line 20

def call
  if RailsAiContext.configuration.context_mode == :full
    FullClaudeSerializer.new(context).call
  else
    render_compact
  end
end