aether-colony 5.1.0 → 5.2.1
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/.aether/aether-utils.sh +122 -42
- package/.aether/commands/colonize.yaml +4 -0
- package/.aether/commands/council.yaml +205 -0
- package/.aether/commands/init.yaml +46 -13
- package/.aether/commands/insert-phase.yaml +4 -0
- package/.aether/commands/plan.yaml +53 -2
- package/.aether/commands/quick.yaml +104 -0
- package/.aether/commands/resume-colony.yaml +6 -4
- package/.aether/commands/resume.yaml +9 -0
- package/.aether/commands/run.yaml +37 -1
- package/.aether/commands/seal.yaml +9 -0
- package/.aether/commands/status.yaml +45 -1
- package/.aether/docs/command-playbooks/build-full.md +2 -1
- package/.aether/docs/command-playbooks/build-prep.md +2 -1
- package/.aether/docs/command-playbooks/continue-full.md +1 -0
- package/.aether/docs/command-playbooks/continue-verify.md +1 -0
- package/.aether/utils/council.sh +425 -0
- package/.aether/utils/error-handler.sh +3 -3
- package/.aether/utils/flag.sh +23 -12
- package/.aether/utils/hive.sh +2 -2
- package/.aether/utils/immune.sh +508 -0
- package/.aether/utils/learning.sh +2 -2
- package/.aether/utils/midden.sh +178 -0
- package/.aether/utils/queen.sh +29 -17
- package/.aether/utils/session.sh +264 -0
- package/.aether/utils/spawn-tree.sh +7 -7
- package/.aether/utils/spawn.sh +2 -2
- package/.aether/utils/state-api.sh +191 -1
- package/.claude/commands/ant/colonize.md +2 -0
- package/.claude/commands/ant/council.md +205 -0
- package/.claude/commands/ant/init.md +46 -13
- package/.claude/commands/ant/insert-phase.md +4 -0
- package/.claude/commands/ant/plan.md +27 -1
- package/.claude/commands/ant/quick.md +100 -0
- package/.claude/commands/ant/resume-colony.md +3 -2
- package/.claude/commands/ant/resume.md +9 -0
- package/.claude/commands/ant/run.md +37 -1
- package/.claude/commands/ant/seal.md +9 -0
- package/.claude/commands/ant/status.md +45 -1
- package/.opencode/commands/ant/colonize.md +2 -0
- package/.opencode/commands/ant/council.md +143 -0
- package/.opencode/commands/ant/init.md +46 -13
- package/.opencode/commands/ant/insert-phase.md +4 -0
- package/.opencode/commands/ant/plan.md +26 -1
- package/.opencode/commands/ant/quick.md +91 -0
- package/.opencode/commands/ant/resume-colony.md +3 -2
- package/.opencode/commands/ant/resume.md +9 -0
- package/.opencode/commands/ant/run.md +37 -1
- package/.opencode/commands/ant/status.md +2 -0
- package/CHANGELOG.md +90 -0
- package/README.md +23 -0
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -8,10 +8,13 @@
|
|
|
8
8
|
[](https://www.npmjs.com/package/aether-colony)
|
|
9
9
|
[](LICENSE)
|
|
10
10
|
[](https://github.com/calcosmic/Aether/stargazers)
|
|
11
|
+
[](https://github.com/sponsors/calcosmic)
|
|
11
12
|
|
|
12
13
|
Spawn a colony of 24 AI specialists that self-organize around your goal using pheromone signals.
|
|
13
14
|
1,000+ weekly installs.
|
|
14
15
|
|
|
16
|
+
*Artificial Ecology For Thought and Emergent Reasoning*
|
|
17
|
+
|
|
15
18
|
*The whole is greater than the sum of its ants.*
|
|
16
19
|
|
|
17
20
|
```bash
|
|
@@ -229,6 +232,26 @@ That's it. Five commands from zero to shipped.
|
|
|
229
232
|
- **[Claude Code](https://docs.anthropic.com/en/docs/claude-code)** — 44 slash commands + 24 agent definitions
|
|
230
233
|
- **[OpenCode](https://github.com/opencode-ai/opencode)** — 44 slash commands + agent definitions
|
|
231
234
|
|
|
235
|
+
## ❤️ Support Aether
|
|
236
|
+
|
|
237
|
+
If Aether has been useful to you, here's how you can keep the colony alive:
|
|
238
|
+
|
|
239
|
+
**[Sponsor on GitHub](https://github.com/sponsors/calcosmic)** (preferred)
|
|
240
|
+
|
|
241
|
+
<details>
|
|
242
|
+
<summary>💡 Crypto — no middlemen, no fees</summary>
|
|
243
|
+
|
|
244
|
+
| Network | Address |
|
|
245
|
+
|---------|---------|
|
|
246
|
+
| **ETH** (MetaMask) | `0xE7F8C9BE190c207D49DF01b82747cf7B6Bd1c809` |
|
|
247
|
+
| **SOL** (Phantom) | `6DVTdoZvvi9siUpgmRJZxk5Kqho8TZiN2ZzyVUVC9gX8` |
|
|
248
|
+
|
|
249
|
+
</details>
|
|
250
|
+
|
|
251
|
+
[PayPal](https://www.paypal.com/ncp/payment/RENG7ZMW5F59L) · [Buy Me a Coffee](https://buymeacoffee.com/music5y)
|
|
252
|
+
|
|
253
|
+
*Your support funds servers, new features, docs, and keeps Aether free & open source (MIT).*
|
|
254
|
+
|
|
232
255
|
## 📄 License
|
|
233
256
|
|
|
234
257
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aether-colony",
|
|
3
|
-
"version": "5.1
|
|
3
|
+
"version": "5.2.1",
|
|
4
4
|
"description": "Multi-agent system using ant colony intelligence for Claude Code and OpenCode — workers self-organize via pheromone signals",
|
|
5
5
|
"bin": {
|
|
6
6
|
"aether": "bin/cli.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"test:intelligence": "bash tests/bash/test-intelligence.sh",
|
|
32
32
|
"generate": "node bin/generate-commands.js",
|
|
33
33
|
"lint:shell": "shellcheck --severity=error .aether/aether-utils.sh bin/generate-commands.sh .aether/utils/file-lock.sh .aether/utils/atomic-write.sh .aether/utils/colorize-log.sh .aether/utils/watch-spawn-tree.sh",
|
|
34
|
-
"lint:json": "node -e \"const fs=require('fs'); const files=['.aether/data/constraints.json','.aether/data/COLONY_STATE.json']; files.filter(f=>fs.existsSync(f)).forEach(f=>{
|
|
34
|
+
"lint:json": "node -e \"const fs=require('fs'); const files=['.aether/data/constraints.json','.aether/data/COLONY_STATE.json']; files.filter(f=>fs.existsSync(f)).forEach(f=>{const s=fs.readFileSync(f,'utf8'); if(s.trim()) JSON.parse(s)}); console.log('JSON valid')\"",
|
|
35
35
|
"lint:sync": "bash bin/generate-commands.sh check",
|
|
36
36
|
"lint": "npm run lint:shell && npm run lint:json && npm run lint:sync"
|
|
37
37
|
},
|
|
@@ -69,5 +69,13 @@
|
|
|
69
69
|
"commander": "^12.1.0",
|
|
70
70
|
"js-yaml": "^4.1.0",
|
|
71
71
|
"picocolors": "^1.1.1"
|
|
72
|
+
},
|
|
73
|
+
"overrides": {
|
|
74
|
+
"minimatch": "^9.0.7",
|
|
75
|
+
"brace-expansion": "^2.0.3",
|
|
76
|
+
"path-to-regexp": "^8.4.0",
|
|
77
|
+
"picomatch": "^4.0.4",
|
|
78
|
+
"tar": "^7.5.11",
|
|
79
|
+
"diff": "^8.0.3"
|
|
72
80
|
}
|
|
73
81
|
}
|