@locusai/cli 0.26.3 → 0.26.4
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 +48 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -102,6 +102,7 @@ locus iterate → Agents address review feedback until ready to mer
|
|
|
102
102
|
| `locus review` | | AI code review on pull requests |
|
|
103
103
|
| `locus iterate` | | Re-execute tasks with PR feedback context |
|
|
104
104
|
| `locus discuss` | | AI-powered architectural discussions |
|
|
105
|
+
| `locus memory` | | List, search, and manage structured project memory |
|
|
105
106
|
| `locus commit` | | AI-powered commit message generation |
|
|
106
107
|
|
|
107
108
|
### Visibility
|
|
@@ -134,6 +135,20 @@ locus iterate → Agents address review feedback until ready to mer
|
|
|
134
135
|
| `locus pkg <name> [cmd]` | Run a package-provided command |
|
|
135
136
|
| `locus create <name>` | Scaffold a new community package |
|
|
136
137
|
|
|
138
|
+
### MCP Server Management
|
|
139
|
+
|
|
140
|
+
| Command | Description |
|
|
141
|
+
|---------|-------------|
|
|
142
|
+
| `locus mcp add <template>` | Add a server from a built-in template |
|
|
143
|
+
| `locus mcp add-custom` | Add a custom MCP server |
|
|
144
|
+
| `locus mcp remove <name>` | Remove an MCP server |
|
|
145
|
+
| `locus mcp list` | List configured servers |
|
|
146
|
+
| `locus mcp sync` | Sync config to provider-specific formats |
|
|
147
|
+
| `locus mcp test <name>` | Test an MCP server connection |
|
|
148
|
+
| `locus mcp status` | Show config and provider sync status |
|
|
149
|
+
| `locus mcp enable <name>` | Enable a server |
|
|
150
|
+
| `locus mcp disable <name>` | Disable a server |
|
|
151
|
+
|
|
137
152
|
### Sandbox Management
|
|
138
153
|
|
|
139
154
|
| Command | Description |
|
|
@@ -204,6 +219,39 @@ locus commit --dry-run # Preview message without committing
|
|
|
204
219
|
locus commit --model <name> # Override AI model
|
|
205
220
|
```
|
|
206
221
|
|
|
222
|
+
### `locus memory`
|
|
223
|
+
|
|
224
|
+
Inspect, search, and manage structured project memory:
|
|
225
|
+
|
|
226
|
+
```bash
|
|
227
|
+
locus memory list # List all memory entries
|
|
228
|
+
locus memory list --category architecture # Filter by category
|
|
229
|
+
locus memory search "auth" # Search entries by keyword
|
|
230
|
+
locus memory stats # Show per-category statistics
|
|
231
|
+
locus memory reset --confirm # Clear all entries
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
### `locus mcp`
|
|
235
|
+
|
|
236
|
+
Multi-provider MCP server management — configure, sync, and manage MCP servers across AI coding agents:
|
|
237
|
+
|
|
238
|
+
```bash
|
|
239
|
+
locus mcp add github # Add from built-in template
|
|
240
|
+
locus mcp add postgres --name mydb # Add with custom name
|
|
241
|
+
locus mcp add-custom --name api --transport stdio --command node --args server.js
|
|
242
|
+
locus mcp remove mydb # Remove a server
|
|
243
|
+
locus mcp list # List configured servers
|
|
244
|
+
locus mcp list --json # JSON output
|
|
245
|
+
locus mcp sync # Sync to provider configs
|
|
246
|
+
locus mcp sync --provider claude # Sync to specific provider
|
|
247
|
+
locus mcp test mydb # Test server connection
|
|
248
|
+
locus mcp status # Show config and sync status
|
|
249
|
+
locus mcp enable mydb # Enable a server
|
|
250
|
+
locus mcp disable mydb # Disable a server
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
Built-in templates: `github`, `postgres`, `filesystem`, `fetch`, `memory`.
|
|
254
|
+
|
|
207
255
|
### `locus skills`
|
|
208
256
|
|
|
209
257
|
Discover and install agent skills from a centralized registry:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@locusai/cli",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.4",
|
|
4
4
|
"description": "GitHub-native AI engineering assistant",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"license": "MIT",
|
|
37
37
|
"dependencies": {},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@locusai/locus-mcp": "^0.26.
|
|
40
|
-
"@locusai/sdk": "^0.26.
|
|
39
|
+
"@locusai/locus-mcp": "^0.26.4",
|
|
40
|
+
"@locusai/sdk": "^0.26.4",
|
|
41
41
|
"@types/bun": "latest",
|
|
42
42
|
"typescript": "^5.8.3"
|
|
43
43
|
},
|