nexo_ai 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f882444cb236ed835107b086528a0411da8e0ef5e8772816b895a074b3be3046
4
+ data.tar.gz: f2bf5a3b073b40ddbdb4b76bc9e798caeaa9ead072042a6580e79010a3022ba2
5
+ SHA512:
6
+ metadata.gz: f2c213194e4cdf220cec97d6807d060ef82187163bb2256c802c8545550817892488309df51a91a40b18c5e7411fb7c81afedcf2a297653def6056169f6a80f8
7
+ data.tar.gz: b17d7f23f163402c9b0b2f3c119dc87370dc09831daa007054483fd3deda365813234d5879ab2dab126bff0c14c7a0f67f583eda0133f3064c8b55e5a78d469b
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2026-06-21
4
+
5
+ - Initial release
@@ -0,0 +1,10 @@
1
+ # Code of Conduct
2
+
3
+ "nexo_ai" follows [The Ruby Community Conduct Guideline](https://www.ruby-lang.org/en/conduct) in all "collaborative space", which is defined as community communications channels (such as mailing lists, submitted patches, commit comments, etc.):
4
+
5
+ * Participants will be tolerant of opposing views.
6
+ * Participants must ensure that their language and actions are free of personal attacks and disparaging personal remarks.
7
+ * When interpreting the words and actions of others, participants should always assume good intentions.
8
+ * Behaviour which can be reasonably considered harassment will not be tolerated.
9
+
10
+ If you have any concerns about behaviour within this project, please contact us at ["mario.chavez@gmail.com"](mailto:"mario.chavez@gmail.com").
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2026 Mario Alberto Chávez
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # Nexo
2
+
3
+ > Agent = Model + Harness. Nexo is the connective tissue linking RubyLLM to tools,
4
+ > sandboxes, skills, and runs.
5
+
6
+ A model alone forgets everything the moment a response ends. The harness is everything
7
+ else. Nexo gives the fragmented RubyLLM ecosystem one front door with safe defaults —
8
+ build a working agent in five lines without wiring anything.
9
+
10
+ **What Nexo adds (everything else it composes):**
11
+
12
+ - **Sandbox + Permissions seam** — pluggable execution environment (virtual / local /
13
+ remote) with explicit authorization gating. Default: `:virtual` + `:read_only`.
14
+ - **WorkflowRun lifecycle** — a finite-job primitive (runId, status, payload, result,
15
+ inspectable event log) that nothing else in the ecosystem provides cleanly.
16
+
17
+ ## Installation
18
+
19
+ Add to your Gemfile:
20
+
21
+ ```ruby
22
+ gem "nexo_ai"
23
+ ```
24
+
25
+ Or install directly:
26
+
27
+ ```sh
28
+ gem install nexo_ai
29
+ ```
30
+
31
+ ## Requirements
32
+
33
+ - Ruby 3.2+
34
+ - [ruby_llm](https://github.com/crmne/ruby_llm) ~> 1.0
35
+
36
+ ## Status
37
+
38
+ 🚧 **Early development.** API is not stable. See [maquina.app](https://maquina.app)
39
+ for updates.
40
+
41
+ ## License
42
+
43
+ MIT — see [LICENSE.txt](LICENSE.txt).
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "minitest/test_task"
5
+
6
+ Minitest::TestTask.create
7
+
8
+ require "standard/rake"
9
+
10
+ task default: %i[test standard]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nexo
4
+ VERSION = "0.1.0"
5
+ end
data/lib/nexo.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "nexo/version"
4
+
5
+ module Nexo
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/lib/nexo_ai.rb ADDED
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "nexo"
data/sig/nexo_ai.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Nexo
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,69 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nexo_ai
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Mario Alberto Chávez
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: standard
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :development
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
26
+ description: An opinionated, drop-in agent harness for RubyLLM. Nexo composes the
27
+ RubyLLM ecosystem into one coherent front door, adding a Sandbox+Permissions seam
28
+ and a WorkflowRun lifecycle primitive.
29
+ email:
30
+ - mario.chavez@gmail.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - CHANGELOG.md
36
+ - CODE_OF_CONDUCT.md
37
+ - LICENSE.txt
38
+ - README.md
39
+ - Rakefile
40
+ - lib/nexo.rb
41
+ - lib/nexo/version.rb
42
+ - lib/nexo_ai.rb
43
+ - sig/nexo_ai.rbs
44
+ homepage: https://maquina.app
45
+ licenses:
46
+ - MIT
47
+ metadata:
48
+ homepage_uri: https://maquina.app
49
+ source_code_uri: https://github.com/maquina-app/nexo
50
+ changelog_uri: https://github.com/maquina-app/nexo/blob/main/CHANGELOG.md
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.0
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.14
66
+ specification_version: 4
67
+ summary: Agent = Model + Harness. Nexo is the connective tissue linking RubyLLM to
68
+ tools, sandboxes, skills, and runs.
69
+ test_files: []