├── .gitignore ├── .rspec ├── .standard.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── llm_rescuer.rb └── llm_rescuer │ ├── nil_extension.rb │ ├── tools │ └── read_source_code_tool.rb │ └── version.rb ├── llm_rescuer.gemspec ├── sig └── llm_rescuer.rbs └── spec ├── llm_rescuer_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/.standard.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/llm_rescuer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/lib/llm_rescuer.rb -------------------------------------------------------------------------------- /lib/llm_rescuer/nil_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/lib/llm_rescuer/nil_extension.rb -------------------------------------------------------------------------------- /lib/llm_rescuer/tools/read_source_code_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/lib/llm_rescuer/tools/read_source_code_tool.rb -------------------------------------------------------------------------------- /lib/llm_rescuer/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module LlmRescuer 4 | VERSION = "0.1.1" 5 | end 6 | -------------------------------------------------------------------------------- /llm_rescuer.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/llm_rescuer.gemspec -------------------------------------------------------------------------------- /sig/llm_rescuer.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/sig/llm_rescuer.rbs -------------------------------------------------------------------------------- /spec/llm_rescuer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/spec/llm_rescuer_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barodeur/llm_rescuer/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------