@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 CHANGED
@@ -5,7 +5,9 @@
5
5
  [![TypeScript](https://img.shields.io/badge/typescript-5.5-blue)](https://www.typescriptlang.org/)
6
6
  [![License](https://img.shields.io/badge/license-MIT-green)](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 - all without leaving your command line.
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 sonnet, opus, haiku |
107
- | `/approve [mode]` | Toggle approval modes |
108
- | `/save [name]` | Save current session |
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 model providers and configurations. The default setup includes support for state-of-the-art language models with:
192
- - Large context windows (up to 200K tokens)
193
- - Streaming responses for real-time feedback
194
- - Advanced reasoning capabilities
195
- - Vision and tool use support
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/your-org/nova/issues)
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
  ---