nightshift-mcp 1.0.7 → 1.0.8
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 +5 -4
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -6,13 +6,13 @@ Explicit delegation, review, and handoffs between AI models.
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
An MCP (Model Context Protocol) server
|
|
9
|
+
An MCP (Model Context Protocol) server for agent teams and multi-agent orchestration across different AI models. Coordinate Claude, Codex, Gemini, and Vibe as an agentic team — with structured delegation, shared task management, and autonomous workflows. Works with any MCP-compatible client.
|
|
10
10
|
|
|
11
11
|
## Features
|
|
12
12
|
|
|
13
|
-
- **Multi-agent chat**: Structured
|
|
14
|
-
- **Failover handling**: Seamless handoffs when an agent hits limits
|
|
15
|
-
- **
|
|
13
|
+
- **Multi-agent chat**: Structured inter-agent messaging with agent name, timestamp, type, and content
|
|
14
|
+
- **Failover handling**: Seamless handoffs when an agent hits limits or context windows fill up
|
|
15
|
+
- **PRD-driven task management**: Work through user stories in prd.json with Zod-validated schemas and helpful error messages
|
|
16
16
|
- **Progress tracking**: Shared learnings via progress.txt
|
|
17
17
|
- **Agent spawning & orchestration**: Spawn Claude, Codex, Gemini, or Vibe as subprocesses with full lifecycle tracking
|
|
18
18
|
- **Autonomous orchestration**: Single `orchestrate` tool runs a claim→implement→complete loop until all stories pass
|
|
@@ -22,6 +22,7 @@ An MCP (Model Context Protocol) server that enables multi-agent communication an
|
|
|
22
22
|
- **Watch/polling**: Monitor for new messages with cursor-based polling
|
|
23
23
|
- **Auto-archiving**: Archive old messages to keep the chat file manageable
|
|
24
24
|
- **Cross-platform**: Works on Windows, Linux, and macOS (uses cross-spawn and platform-safe process management)
|
|
25
|
+
- **Heterogeneous agent teams**: Mix different AI models — use each for what it's best at
|
|
25
26
|
- **Universal compatibility**: Works with any MCP-supporting tool (42 tools across 8 categories)
|
|
26
27
|
- **Simple file-based storage**: No external services required
|
|
27
28
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nightshift-mcp",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.8",
|
|
4
|
+
"description": "Agent teams and multi-agent orchestration across AI models via MCP. Coordinate Claude, Codex, Gemini, and Vibe with delegation, failovers, and autonomous workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -26,11 +26,16 @@
|
|
|
26
26
|
"model-context-protocol",
|
|
27
27
|
"ai-agents",
|
|
28
28
|
"multi-agent",
|
|
29
|
+
"agent-teams",
|
|
30
|
+
"agentic",
|
|
29
31
|
"claude",
|
|
30
32
|
"codex",
|
|
31
33
|
"gemini",
|
|
32
34
|
"vibe",
|
|
33
35
|
"orchestration",
|
|
36
|
+
"agent-orchestration",
|
|
37
|
+
"autonomous-agents",
|
|
38
|
+
"agent-coordination",
|
|
34
39
|
"nightshift"
|
|
35
40
|
],
|
|
36
41
|
"license": "MIT",
|