aiko 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aiko
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Satoshi Takei
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: A CLI coding agent powered by OpenAI-compatible LLM APIs.
13
+ email:
14
+ - s.takei.dev@gmail.com
15
+ executables:
16
+ - aiko
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE.txt
21
+ - README.ja.md
22
+ - README.md
23
+ - exe/aiko
24
+ - lib/aiko.rb
25
+ - lib/aiko/agent.rb
26
+ - lib/aiko/cli.rb
27
+ - lib/aiko/config.rb
28
+ - lib/aiko/conversation.rb
29
+ - lib/aiko/errors.rb
30
+ - lib/aiko/llm/client.rb
31
+ - lib/aiko/llm/openai_compatible.rb
32
+ - lib/aiko/llm/response.rb
33
+ - lib/aiko/system_prompt.rb
34
+ - lib/aiko/tools/base.rb
35
+ - lib/aiko/tools/edit_file.rb
36
+ - lib/aiko/tools/list_files.rb
37
+ - lib/aiko/tools/read_file.rb
38
+ - lib/aiko/tools/registry.rb
39
+ - lib/aiko/tools/run_command.rb
40
+ - lib/aiko/tools/search.rb
41
+ - lib/aiko/tools/write_file.rb
42
+ - lib/aiko/ui.rb
43
+ - lib/aiko/version.rb
44
+ homepage: https://github.com/takeisa/aiko
45
+ licenses:
46
+ - MIT
47
+ metadata:
48
+ source_code_uri: https://github.com/takeisa/aiko
49
+ bug_tracker_uri: https://github.com/takeisa/aiko/issues
50
+ rubygems_mfa_required: 'true'
51
+ rdoc_options: []
52
+ require_paths:
53
+ - lib
54
+ required_ruby_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '3.2'
59
+ required_rubygems_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ requirements: []
65
+ rubygems_version: 4.0.10
66
+ specification_version: 4
67
+ summary: AI coding agent CLI
68
+ test_files: []