nexora-agent 0.0.1

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.
package/LICENSE ADDED
@@ -0,0 +1,17 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ Copyright 2026 Nexora Authors
6
+
7
+ Licensed under the Apache License, Version 2.0 (the "License");
8
+ you may not use this file except in compliance with the License.
9
+ You may obtain a copy of the License at
10
+
11
+ http://www.apache.org/licenses/LICENSE-2.0
12
+
13
+ Unless required by applicable law or agreed to in writing, software
14
+ distributed under the License is distributed on an "AS IS" BASIS,
15
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ See the License for the specific language governing permissions and
17
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # Nexora Agent CLI
2
+
3
+ > **One Agent. Any Model. Any Workspace.**
4
+
5
+ Nexora is an autonomous AI developer agent built for modern software teams and developers.
6
+
7
+ ## Quick Start (No Install Needed)
8
+
9
+ Run directly from any directory:
10
+
11
+ ```bash
12
+ npx nexora-agent
13
+ ```
14
+
15
+ Or run a specific task:
16
+
17
+ ```bash
18
+ npx nexora-agent run "Explain this project structure"
19
+ ```
20
+
21
+ ## Global Installation
22
+
23
+ ```bash
24
+ npm install -g nexora-agent
25
+ ```
26
+
27
+ After installation, use the `nexora` command anywhere:
28
+
29
+ ```bash
30
+ # Start interactive agent
31
+ nexora
32
+
33
+ # Run task
34
+ nexora run "Fix the bug in auth service"
35
+
36
+ # Check system & model routes
37
+ nexora doctor
38
+ nexora models
39
+ ```
40
+
41
+ ## Features
42
+
43
+ - **Model Agnostic**: Seamless dynamic routing across leading AI models.
44
+ - **Autonomous Agent**: Plans, executes, inspects files, runs tests, and fixes code.
45
+ - **Privacy & Safety**: Zero provider leaks, fine-grained permission engine.
46
+ - **Full Context Awareness**: Understands workspace directory, git status, and project architecture.
47
+
48
+ ## License
49
+
50
+ Apache-2.0
package/bin/nexora.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "../dist/main.cjs";