@compass-ai/nova 1.0.38 → 1.0.39
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/README.md +57 -12
- package/dist/cli.js +529 -535
- package/dist/index.js +6 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
[](https://www.typescriptlang.org/)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
|
|
8
|
-
Nova brings the power of advanced AI language models directly to your terminal. Write code, debug issues, refactor projects, and understand complex codebases using natural language
|
|
8
|
+
Nova brings the power of advanced AI language models directly to your terminal. Write code, debug issues, refactor projects, and understand complex codebases using natural language — all without leaving your command line.
|
|
9
|
+
|
|
10
|
+
Part of the [Compass Platform](https://compassap.ai/) ecosystem — sync sessions across CLI, Desktop, and Web.
|
|
9
11
|
|
|
10
12
|
## Why Nova?
|
|
11
13
|
|
|
@@ -92,6 +94,12 @@ Nova leverages advanced language models to provide intelligent assistance for:
|
|
|
92
94
|
❯ Create a commit for my changes with a descriptive message
|
|
93
95
|
❯ Help me write a PR description for this feature
|
|
94
96
|
|
|
97
|
+
# Quick commits with /commit
|
|
98
|
+
❯ /commit
|
|
99
|
+
→ Analyzes staged changes
|
|
100
|
+
→ Generates conventional commit message
|
|
101
|
+
→ Creates commit with one approval
|
|
102
|
+
|
|
95
103
|
# Testing
|
|
96
104
|
❯ Write unit tests for the payment processing module
|
|
97
105
|
```
|
|
@@ -103,12 +111,17 @@ During a session, use these slash commands:
|
|
|
103
111
|
| Command | Description |
|
|
104
112
|
|---------|-------------|
|
|
105
113
|
| `/help` | Show available commands |
|
|
106
|
-
| `/model [name]` | Switch between
|
|
107
|
-
| `/
|
|
108
|
-
| `/
|
|
109
|
-
| `/load [name]` | Load a saved session |
|
|
114
|
+
| `/model [name]` | Switch between Opus, Sonnet, Haiku |
|
|
115
|
+
| `/commit` | Generate conventional commits from staged changes |
|
|
116
|
+
| `/approve [mode]` | Toggle approval modes (manual/auto/strict) |
|
|
110
117
|
| `/tokens` | View token usage stats |
|
|
118
|
+
| `/cost` | Display estimated API costs |
|
|
111
119
|
| `/undo` | Undo last file operation |
|
|
120
|
+
| `/export` | Export conversation as Markdown/JSON/HTML |
|
|
121
|
+
| `/compact` | Summarize conversation to free context |
|
|
122
|
+
| `/index` | Reindex project for semantic search |
|
|
123
|
+
| `/agents` | Switch to specialized agents |
|
|
124
|
+
| `/config` | View/modify configuration |
|
|
112
125
|
| `/clear` | Clear conversation history |
|
|
113
126
|
| `/exit` | Exit Nova |
|
|
114
127
|
|
|
@@ -158,6 +171,30 @@ Usage: `/fix-issue 123`
|
|
|
158
171
|
|
|
159
172
|
See [Custom Commands Documentation](docs/custom-commands.md) for full details.
|
|
160
173
|
|
|
174
|
+
## Agents & Skills
|
|
175
|
+
|
|
176
|
+
Nova includes specialized agents for different workflows:
|
|
177
|
+
|
|
178
|
+
| Agent | Purpose |
|
|
179
|
+
|-------|---------|
|
|
180
|
+
| **Explorer** | Codebase navigation and understanding |
|
|
181
|
+
| **Code Reviewer** | Security and quality analysis |
|
|
182
|
+
| **Debugger** | Error diagnosis and fixes |
|
|
183
|
+
| **Planner** | Architecture and implementation planning |
|
|
184
|
+
|
|
185
|
+
Switch agents with `/agents` or create custom agents in `agents.md`:
|
|
186
|
+
|
|
187
|
+
```markdown
|
|
188
|
+
---
|
|
189
|
+
name: security-audit
|
|
190
|
+
model: sonnet-4-20250514
|
|
191
|
+
approval-mode: strict
|
|
192
|
+
---
|
|
193
|
+
Focus on: OWASP Top 10, dependency vulnerabilities, secret detection
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
Learn more about the Skills ecosystem at [agentskills.io](https://agentskills.io).
|
|
197
|
+
|
|
161
198
|
## Configuration
|
|
162
199
|
|
|
163
200
|
Nova uses a hierarchical configuration system:
|
|
@@ -188,11 +225,20 @@ Nova is designed with privacy and security as core principles:
|
|
|
188
225
|
|
|
189
226
|
## AI Model Support
|
|
190
227
|
|
|
191
|
-
Nova supports multiple AI
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
228
|
+
Nova supports multiple AI models — switch anytime with `/model`:
|
|
229
|
+
|
|
230
|
+
| Model | Best For |
|
|
231
|
+
|-------|----------|
|
|
232
|
+
| **Claude Opus 4.5** | Complex reasoning, architecture decisions |
|
|
233
|
+
| **Claude Sonnet 4.5** | Balanced performance (default) |
|
|
234
|
+
| **Claude Haiku 4.5** | Fast iterations, quick tasks |
|
|
235
|
+
| **Ollama** | Local/private, offline capable |
|
|
236
|
+
| **GLM 4.7, Minimax, Kimi, Gemini** | Alternative providers |
|
|
237
|
+
|
|
238
|
+
All models support:
|
|
239
|
+
- 200K token context window
|
|
240
|
+
- Streaming responses
|
|
241
|
+
- Vision and tool use
|
|
196
242
|
|
|
197
243
|
## Requirements
|
|
198
244
|
|
|
@@ -228,8 +274,7 @@ MIT License - see [LICENSE](LICENSE) for details.
|
|
|
228
274
|
## Links
|
|
229
275
|
|
|
230
276
|
- [npm Package](https://www.npmjs.com/package/@compass-ai/nova)
|
|
231
|
-
- [Report Issues](https://github.com/
|
|
232
|
-
- [Documentation](docs/README.md)
|
|
277
|
+
- [Report Issues](https://github.com/Compass-Agentic-Platform/nova/issues)
|
|
233
278
|
- [Compass Official](https://compassap.ai/)
|
|
234
279
|
|
|
235
280
|
---
|