@aithr-ai/mcp-server 1.0.16 → 1.1.0
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 +35 -0
- package/index.js +3319 -3317
- package/package.json +40 -33
- package/scripts/postinstall.js +119 -0
- package/skills/orchestra/SKILL.md +2476 -0
package/README.md
CHANGED
|
@@ -79,6 +79,41 @@ Visit [https://www.aithr.ai/settings/mcp-install](https://www.aithr.ai/settings/
|
|
|
79
79
|
- `aether_add_file_to_folder` - Add files to folders
|
|
80
80
|
- `aether_create_artifact` - Create and place artifacts
|
|
81
81
|
|
|
82
|
+
## Orchestra Skill (Auto-Installed)
|
|
83
|
+
|
|
84
|
+
When you install this package, it automatically installs the **Orchestra skill** to your Claude Code skills directory (`~/.claude/skills/orchestra/`).
|
|
85
|
+
|
|
86
|
+
This enables the `/orchestra` command with full v6 capabilities:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
/orchestra # Start planning a new session
|
|
90
|
+
/orchestra approve # Begin autonomous execution
|
|
91
|
+
/orchestra status # Check current progress
|
|
92
|
+
/orchestra push # Push to GitHub
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
### Orchestra v6 Features
|
|
96
|
+
|
|
97
|
+
- **Contract-First Development** - Define types, schemas, APIs upfront
|
|
98
|
+
- **Orchestrator Brain** - AI-powered decision engine (Claude Opus 4.5)
|
|
99
|
+
- **Dynamic Agent Switching** - Reassign tasks when agents struggle
|
|
100
|
+
- **Structured Reports** - Consistent agent-to-orchestrator communication
|
|
101
|
+
- **File Collision Prevention** - Safe parallel task execution with file locks
|
|
102
|
+
- **Validation Protocol** - TypeScript checks after every code generation
|
|
103
|
+
|
|
104
|
+
### Manual Skill Installation
|
|
105
|
+
|
|
106
|
+
If the auto-install doesn't work, manually copy the skill:
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
# The skill file is bundled at:
|
|
110
|
+
# node_modules/@aithr-ai/mcp-server/skills/orchestra/SKILL.md
|
|
111
|
+
|
|
112
|
+
# Copy to your Claude skills directory:
|
|
113
|
+
mkdir -p ~/.claude/skills/orchestra
|
|
114
|
+
cp node_modules/@aithr-ai/mcp-server/skills/orchestra/SKILL.md ~/.claude/skills/orchestra/
|
|
115
|
+
```
|
|
116
|
+
|
|
82
117
|
## Documentation
|
|
83
118
|
|
|
84
119
|
Full documentation at [https://www.aithr.ai/docs/orchestra](https://www.aithr.ai/docs/orchestra)
|