autoflux 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.
data/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "devDependencies": {
3
+ "@commitlint/cli": "^19.6.1",
4
+ "@commitlint/config-conventional": "^19.6.0",
5
+ "husky": "^9.1.7"
6
+ },
7
+ "type": "module",
8
+ "scripts": {
9
+ "prepare": "husky"
10
+ }
11
+ }
data/sig/autoflux.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Autoflux
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: autoflux
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Aotokitsuruya
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2025-01-05 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A lightweight AI agent framework for Ruby
14
+ email:
15
+ - contact@aotoki.me
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".husky/commit-msg"
21
+ - ".husky/pre-commit"
22
+ - ".rspec"
23
+ - ".rubocop.yml"
24
+ - LICENSE.txt
25
+ - README.md
26
+ - Rakefile
27
+ - commitlint.config.js
28
+ - lib/autoflux.rb
29
+ - lib/autoflux/agent.rb
30
+ - lib/autoflux/assistant.rb
31
+ - lib/autoflux/io.rb
32
+ - lib/autoflux/memory.rb
33
+ - lib/autoflux/start.rb
34
+ - lib/autoflux/state.rb
35
+ - lib/autoflux/stdio.rb
36
+ - lib/autoflux/stop.rb
37
+ - lib/autoflux/tool.rb
38
+ - lib/autoflux/tools.rb
39
+ - lib/autoflux/user.rb
40
+ - lib/autoflux/version.rb
41
+ - lib/autoflux/workflow.rb
42
+ - package-lock.json
43
+ - package.json
44
+ - sig/autoflux.rbs
45
+ homepage: https://github.com/elct9620/autoflux
46
+ licenses:
47
+ - Apache-2.0
48
+ metadata:
49
+ homepage_uri: https://github.com/elct9620/autoflux
50
+ source_code_uri: https://github.com/elct9620/autoflux
51
+ rubygems_mfa_required: 'true'
52
+ post_install_message:
53
+ rdoc_options: []
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: 3.0.0
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ requirements: []
67
+ rubygems_version: 3.5.9
68
+ signing_key:
69
+ specification_version: 4
70
+ summary: A lightweight AI agent framework
71
+ test_files: []