nightshift-mcp 2.1.1 → 2.1.2

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.
Files changed (2) hide show
  1. package/README.md +9 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -129,7 +129,7 @@ claude codex
129
129
 
130
130
  ### Fully autonomous
131
131
  ```
132
- orchestrate(agent: "Claude", mode: "all")
132
+ orchestrate()
133
133
  ```
134
134
 
135
135
  ### Parallel delegation
@@ -317,32 +317,30 @@ nightshift-daemon [options]
317
317
 
318
318
  ## Local Models
319
319
 
320
- ### Goose + Ollama (recommended)
320
+ NightShift supports local models via [Goose](https://github.com/block/goose) + Ollama or direct Ollama integration.
321
+
322
+ ### Goose + Ollama
321
323
 
322
324
  ```bash
323
325
  export NIGHTSHIFT_GOOSE_PROVIDER=ollama
324
- export NIGHTSHIFT_GOOSE_MODEL=qwen3.5:4b
326
+ export NIGHTSHIFT_GOOSE_MODEL=<your-model>
325
327
  ```
326
328
 
327
329
  ```
328
330
  spawn_agent(agent: "goose", prompt: "Fix the pagination bug")
329
331
  ```
330
332
 
331
- ### Direct Ollama (text only)
333
+ ### Direct Ollama
332
334
 
333
335
  ```bash
334
- export NIGHTSHIFT_OLLAMA_MODEL=qwen3.5:4b
336
+ export NIGHTSHIFT_OLLAMA_MODEL=<your-model>
335
337
  ```
336
338
 
337
339
  ```
338
340
  spawn_agent(agent: "ollama", prompt: "Review this PR")
339
341
  ```
340
342
 
341
- | GPU VRAM | Model | Size |
342
- |----------|-------|------|
343
- | 4GB+ | `qwen3.5:4b` | 3.4 GB |
344
- | 6GB+ | `qwen3.5:4b-q8_0` | 5.3 GB |
345
- | 8GB+ | `qwen3.5:9b` | 6.6 GB |
343
+ Any Ollama-compatible model works. Choose a model that fits your available resources.
346
344
 
347
345
  ## Data Storage
348
346
 
@@ -369,11 +367,9 @@ Add `.robot-chat/` to your `.gitignore` — coordination state is ephemeral.
369
367
  ## Development
370
368
 
371
369
  ```bash
372
- git clone https://gitlab.com/Pike1868/nightshift-mcp.git
373
- cd nightshift-mcp
374
370
  npm install
375
371
  npm run build
376
- npm test # 113 tests
372
+ npm test # run test suite
377
373
  npm run dev # watch mode
378
374
  npm link # global CLI access
379
375
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightshift-mcp",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Agent teams and multi-agent orchestration across AI models via MCP. Coordinate Claude, Codex, Gemini, Vibe, and Goose with delegation, failovers, and autonomous workflows.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",