aether-colony 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.
Files changed (207) hide show
  1. package/.aether/CONTEXT.md +160 -0
  2. package/.aether/QUEEN.md +84 -0
  3. package/.aether/aether-utils.sh +7749 -0
  4. package/.aether/docs/QUEEN-SYSTEM.md +211 -0
  5. package/.aether/docs/README.md +68 -0
  6. package/.aether/docs/caste-system.md +48 -0
  7. package/.aether/docs/disciplines/DISCIPLINES.md +93 -0
  8. package/.aether/docs/disciplines/coding-standards.md +197 -0
  9. package/.aether/docs/disciplines/debugging.md +207 -0
  10. package/.aether/docs/disciplines/learning.md +254 -0
  11. package/.aether/docs/disciplines/tdd.md +257 -0
  12. package/.aether/docs/disciplines/verification-loop.md +167 -0
  13. package/.aether/docs/disciplines/verification.md +116 -0
  14. package/.aether/docs/error-codes.md +268 -0
  15. package/.aether/docs/known-issues.md +233 -0
  16. package/.aether/docs/pheromones.md +205 -0
  17. package/.aether/docs/queen-commands.md +97 -0
  18. package/.aether/exchange/colony-registry.xml +11 -0
  19. package/.aether/exchange/pheromone-xml.sh +575 -0
  20. package/.aether/exchange/pheromones.xml +87 -0
  21. package/.aether/exchange/queen-wisdom.xml +14 -0
  22. package/.aether/exchange/registry-xml.sh +273 -0
  23. package/.aether/exchange/wisdom-xml.sh +319 -0
  24. package/.aether/midden/approach-changes.md +5 -0
  25. package/.aether/midden/build-failures.md +5 -0
  26. package/.aether/midden/test-failures.md +5 -0
  27. package/.aether/model-profiles.yaml +100 -0
  28. package/.aether/rules/aether-colony.md +134 -0
  29. package/.aether/schemas/aether-types.xsd +255 -0
  30. package/.aether/schemas/colony-registry.xsd +309 -0
  31. package/.aether/schemas/example-prompt-builder.xml +234 -0
  32. package/.aether/schemas/pheromone.xsd +163 -0
  33. package/.aether/schemas/prompt.xsd +416 -0
  34. package/.aether/schemas/queen-wisdom.xsd +325 -0
  35. package/.aether/schemas/worker-priming.xsd +276 -0
  36. package/.aether/templates/QUEEN.md.template +79 -0
  37. package/.aether/templates/colony-state-reset.jq.template +22 -0
  38. package/.aether/templates/colony-state.template.json +35 -0
  39. package/.aether/templates/constraints.template.json +9 -0
  40. package/.aether/templates/crowned-anthill.template.md +36 -0
  41. package/.aether/templates/handoff-build-error.template.md +30 -0
  42. package/.aether/templates/handoff-build-success.template.md +39 -0
  43. package/.aether/templates/handoff.template.md +40 -0
  44. package/.aether/templates/learning-observations.template.json +6 -0
  45. package/.aether/templates/midden.template.json +7 -0
  46. package/.aether/templates/pheromones.template.json +6 -0
  47. package/.aether/templates/session.template.json +9 -0
  48. package/.aether/utils/atomic-write.sh +219 -0
  49. package/.aether/utils/chamber-compare.sh +193 -0
  50. package/.aether/utils/chamber-utils.sh +297 -0
  51. package/.aether/utils/colorize-log.sh +132 -0
  52. package/.aether/utils/error-handler.sh +212 -0
  53. package/.aether/utils/file-lock.sh +158 -0
  54. package/.aether/utils/queen-to-md.xsl +395 -0
  55. package/.aether/utils/semantic-cli.sh +413 -0
  56. package/.aether/utils/spawn-tree.sh +428 -0
  57. package/.aether/utils/spawn-with-model.sh +56 -0
  58. package/.aether/utils/state-loader.sh +215 -0
  59. package/.aether/utils/swarm-display.sh +268 -0
  60. package/.aether/utils/watch-spawn-tree.sh +253 -0
  61. package/.aether/utils/xml-compose.sh +253 -0
  62. package/.aether/utils/xml-convert.sh +273 -0
  63. package/.aether/utils/xml-core.sh +186 -0
  64. package/.aether/utils/xml-query.sh +201 -0
  65. package/.aether/utils/xml-utils.sh +110 -0
  66. package/.aether/workers.md +765 -0
  67. package/.claude/agents/ant/aether-ambassador.md +264 -0
  68. package/.claude/agents/ant/aether-archaeologist.md +322 -0
  69. package/.claude/agents/ant/aether-auditor.md +266 -0
  70. package/.claude/agents/ant/aether-builder.md +187 -0
  71. package/.claude/agents/ant/aether-chaos.md +268 -0
  72. package/.claude/agents/ant/aether-chronicler.md +304 -0
  73. package/.claude/agents/ant/aether-gatekeeper.md +325 -0
  74. package/.claude/agents/ant/aether-includer.md +373 -0
  75. package/.claude/agents/ant/aether-keeper.md +271 -0
  76. package/.claude/agents/ant/aether-measurer.md +317 -0
  77. package/.claude/agents/ant/aether-probe.md +210 -0
  78. package/.claude/agents/ant/aether-queen.md +325 -0
  79. package/.claude/agents/ant/aether-route-setter.md +173 -0
  80. package/.claude/agents/ant/aether-sage.md +353 -0
  81. package/.claude/agents/ant/aether-scout.md +142 -0
  82. package/.claude/agents/ant/aether-surveyor-disciplines.md +416 -0
  83. package/.claude/agents/ant/aether-surveyor-nest.md +354 -0
  84. package/.claude/agents/ant/aether-surveyor-pathogens.md +288 -0
  85. package/.claude/agents/ant/aether-surveyor-provisions.md +359 -0
  86. package/.claude/agents/ant/aether-tracker.md +265 -0
  87. package/.claude/agents/ant/aether-watcher.md +244 -0
  88. package/.claude/agents/ant/aether-weaver.md +247 -0
  89. package/.claude/commands/ant/archaeology.md +341 -0
  90. package/.claude/commands/ant/build.md +1160 -0
  91. package/.claude/commands/ant/chaos.md +349 -0
  92. package/.claude/commands/ant/colonize.md +270 -0
  93. package/.claude/commands/ant/continue.md +1070 -0
  94. package/.claude/commands/ant/council.md +309 -0
  95. package/.claude/commands/ant/dream.md +265 -0
  96. package/.claude/commands/ant/entomb.md +487 -0
  97. package/.claude/commands/ant/feedback.md +78 -0
  98. package/.claude/commands/ant/flag.md +139 -0
  99. package/.claude/commands/ant/flags.md +155 -0
  100. package/.claude/commands/ant/focus.md +58 -0
  101. package/.claude/commands/ant/help.md +122 -0
  102. package/.claude/commands/ant/history.md +137 -0
  103. package/.claude/commands/ant/init.md +409 -0
  104. package/.claude/commands/ant/interpret.md +267 -0
  105. package/.claude/commands/ant/lay-eggs.md +201 -0
  106. package/.claude/commands/ant/maturity.md +102 -0
  107. package/.claude/commands/ant/memory-details.md +77 -0
  108. package/.claude/commands/ant/migrate-state.md +165 -0
  109. package/.claude/commands/ant/oracle.md +387 -0
  110. package/.claude/commands/ant/organize.md +227 -0
  111. package/.claude/commands/ant/pause-colony.md +247 -0
  112. package/.claude/commands/ant/phase.md +126 -0
  113. package/.claude/commands/ant/plan.md +544 -0
  114. package/.claude/commands/ant/redirect.md +58 -0
  115. package/.claude/commands/ant/resume-colony.md +182 -0
  116. package/.claude/commands/ant/resume.md +363 -0
  117. package/.claude/commands/ant/seal.md +306 -0
  118. package/.claude/commands/ant/status.md +272 -0
  119. package/.claude/commands/ant/swarm.md +361 -0
  120. package/.claude/commands/ant/tunnels.md +425 -0
  121. package/.claude/commands/ant/update.md +209 -0
  122. package/.claude/commands/ant/verify-castes.md +95 -0
  123. package/.claude/commands/ant/watch.md +238 -0
  124. package/.opencode/agents/aether-ambassador.md +140 -0
  125. package/.opencode/agents/aether-archaeologist.md +108 -0
  126. package/.opencode/agents/aether-auditor.md +144 -0
  127. package/.opencode/agents/aether-builder.md +184 -0
  128. package/.opencode/agents/aether-chaos.md +115 -0
  129. package/.opencode/agents/aether-chronicler.md +122 -0
  130. package/.opencode/agents/aether-gatekeeper.md +116 -0
  131. package/.opencode/agents/aether-includer.md +117 -0
  132. package/.opencode/agents/aether-keeper.md +177 -0
  133. package/.opencode/agents/aether-measurer.md +128 -0
  134. package/.opencode/agents/aether-probe.md +133 -0
  135. package/.opencode/agents/aether-queen.md +286 -0
  136. package/.opencode/agents/aether-route-setter.md +130 -0
  137. package/.opencode/agents/aether-sage.md +106 -0
  138. package/.opencode/agents/aether-scout.md +101 -0
  139. package/.opencode/agents/aether-surveyor-disciplines.md +386 -0
  140. package/.opencode/agents/aether-surveyor-nest.md +324 -0
  141. package/.opencode/agents/aether-surveyor-pathogens.md +259 -0
  142. package/.opencode/agents/aether-surveyor-provisions.md +329 -0
  143. package/.opencode/agents/aether-tracker.md +137 -0
  144. package/.opencode/agents/aether-watcher.md +174 -0
  145. package/.opencode/agents/aether-weaver.md +130 -0
  146. package/.opencode/commands/ant/archaeology.md +338 -0
  147. package/.opencode/commands/ant/build.md +1200 -0
  148. package/.opencode/commands/ant/chaos.md +346 -0
  149. package/.opencode/commands/ant/colonize.md +202 -0
  150. package/.opencode/commands/ant/continue.md +938 -0
  151. package/.opencode/commands/ant/council.md +305 -0
  152. package/.opencode/commands/ant/dream.md +262 -0
  153. package/.opencode/commands/ant/entomb.md +367 -0
  154. package/.opencode/commands/ant/feedback.md +80 -0
  155. package/.opencode/commands/ant/flag.md +137 -0
  156. package/.opencode/commands/ant/flags.md +153 -0
  157. package/.opencode/commands/ant/focus.md +56 -0
  158. package/.opencode/commands/ant/help.md +124 -0
  159. package/.opencode/commands/ant/history.md +127 -0
  160. package/.opencode/commands/ant/init.md +337 -0
  161. package/.opencode/commands/ant/interpret.md +256 -0
  162. package/.opencode/commands/ant/lay-eggs.md +141 -0
  163. package/.opencode/commands/ant/maturity.md +92 -0
  164. package/.opencode/commands/ant/memory-details.md +77 -0
  165. package/.opencode/commands/ant/migrate-state.md +153 -0
  166. package/.opencode/commands/ant/oracle.md +338 -0
  167. package/.opencode/commands/ant/organize.md +224 -0
  168. package/.opencode/commands/ant/pause-colony.md +220 -0
  169. package/.opencode/commands/ant/phase.md +123 -0
  170. package/.opencode/commands/ant/plan.md +531 -0
  171. package/.opencode/commands/ant/redirect.md +67 -0
  172. package/.opencode/commands/ant/resume-colony.md +178 -0
  173. package/.opencode/commands/ant/resume.md +363 -0
  174. package/.opencode/commands/ant/seal.md +247 -0
  175. package/.opencode/commands/ant/status.md +272 -0
  176. package/.opencode/commands/ant/swarm.md +357 -0
  177. package/.opencode/commands/ant/tunnels.md +406 -0
  178. package/.opencode/commands/ant/update.md +191 -0
  179. package/.opencode/commands/ant/verify-castes.md +85 -0
  180. package/.opencode/commands/ant/watch.md +220 -0
  181. package/.opencode/opencode.json +3 -0
  182. package/CHANGELOG.md +325 -0
  183. package/DISCLAIMER.md +74 -0
  184. package/LICENSE +21 -0
  185. package/README.md +258 -0
  186. package/bin/cli.js +2436 -0
  187. package/bin/generate-commands.sh +291 -0
  188. package/bin/lib/caste-colors.js +57 -0
  189. package/bin/lib/colors.js +76 -0
  190. package/bin/lib/errors.js +255 -0
  191. package/bin/lib/event-types.js +190 -0
  192. package/bin/lib/file-lock.js +695 -0
  193. package/bin/lib/init.js +454 -0
  194. package/bin/lib/logger.js +242 -0
  195. package/bin/lib/model-profiles.js +445 -0
  196. package/bin/lib/model-verify.js +288 -0
  197. package/bin/lib/nestmate-loader.js +130 -0
  198. package/bin/lib/proxy-health.js +253 -0
  199. package/bin/lib/spawn-logger.js +266 -0
  200. package/bin/lib/state-guard.js +602 -0
  201. package/bin/lib/state-sync.js +516 -0
  202. package/bin/lib/telemetry.js +441 -0
  203. package/bin/lib/update-transaction.js +1454 -0
  204. package/bin/npx-install.js +178 -0
  205. package/bin/sync-to-runtime.sh +6 -0
  206. package/bin/validate-package.sh +88 -0
  207. package/package.json +70 -0
@@ -0,0 +1,160 @@
1
+ # Aether Colony — Current Context
2
+
3
+ > **This document is the colony's memory. If context collapses, read this file first.**
4
+
5
+ ---
6
+
7
+ ## 🚦 System Status
8
+
9
+ | Field | Value |
10
+ |-------|-------|
11
+ | **Last Updated** | 2026-02-16T20:49:16Z |
12
+ | **Current Phase** | - |
13
+ | **Phase Name** | Shellcheck Fixes |
14
+ | **Milestone** | Open Chambers |
15
+ | **Colony Status** | IDLE (No active colony) |
16
+ | **Safe to Clear?** | YES — No active colony - test fixes complete, hooks simplified |
17
+
18
+ ---
19
+
20
+ ## 📝 Session Notes (2026-02-21)
21
+
22
+ ### Completed This Session
23
+ - Fixed shellcheck SC2168 warnings in `.aether/aether-utils.sh`
24
+ - Removed duplicate context-update code (~388 lines)
25
+ - Fixed 8 remaining `local` keyword errors in case handlers
26
+ - All 383 tests pass, 0 SC2168 errors
27
+
28
+ ### Pending Work
29
+ - Commit the shellcheck fixes
30
+ - Resume XML integration work (see prior session handoff)
31
+
32
+ ---
33
+
34
+ ## 🎯 Prior Goal (2026-02-16)
35
+
36
+ Implement XML exchange system integration into existing colony lifecycle (pause/resume/seal/init) rather than as separate commands.
37
+
38
+ **Decision needed:** Choose integration approach:
39
+ - **Option A:** Auto-export on pause, auto-import on resume
40
+ - **Option B:** Export to eternal memory on seal, import on init
41
+ - **Option C:** Hybrid approach (recommended)
42
+
43
+ ---
44
+
45
+ ## 📍 What's In Progress
46
+
47
+ ### Phase 4: XML Exchange System ✅ COMPLETE
48
+
49
+ **Built but not yet integrated:**
50
+
51
+ 1. **Exchange Modules** (`.aether/exchange/`)
52
+ - `pheromone-xml.sh` - Signal export/import/merge with namespace prefixing
53
+ - `wisdom-xml.sh` - Queen wisdom with promotion pipeline (0.8 threshold)
54
+ - `registry-xml.sh` - Colony lineage and ancestry tracking
55
+
56
+ 2. **Core Utilities** (`.aether/utils/xml-core.sh`)
57
+ - Feature detection for xmllint/xmlstarlet/xsltproc
58
+ - JSON output helpers
59
+ - Validation, formatting, escaping
60
+
61
+ 3. **Schemas** (`.aether/schemas/`)
62
+ - `pheromone.xsd` - 22 castes, 4 priority levels
63
+ - `queen-wisdom.xsd` - Philosophy/pattern validation
64
+ - `colony-registry.xsd` - Lineage validation
65
+ - `aether-types.xsd` - Shared types
66
+
67
+ 4. **Tests**
68
+ - `tests/bash/test-xml-roundtrip.sh` - 19/19 tests passing
69
+
70
+ ---
71
+
72
+ ## ✅ Completed Work
73
+
74
+ ### Phase 1: Foundation ✅
75
+ - XML validation utilities (xml-validate, xml-query, xml-convert)
76
+ - XSD schemas (pheromone.xsd, queen-wisdom.xsd, colony-registry.xsd)
77
+ - 20/20 tests passing
78
+
79
+ ### Phase 2: Pheromone XML ✅
80
+ - Pheromone export to XML with namespaces
81
+ - XInclude composition for worker priming
82
+ - Colony namespace generation functions
83
+ - 15/15 pheromone tests + 6/6 XInclude tests passing
84
+
85
+ ### Phase 3: Wisdom Evolution ✅
86
+ - XSLT transformation queen-wisdom.xml → QUEEN.md
87
+ - Validation workflow using queen-wisdom.xsd
88
+ - Wisdom promotion pipeline (pattern → philosophy at 0.8 confidence)
89
+
90
+ ### Phase 4: Exchange System ✅
91
+ - Round-trip conversion (JSON ↔ XML)
92
+ - Namespace prefixing for collision prevention
93
+ - Merge with deduplication
94
+ - 19/19 round-trip tests passing
95
+
96
+ ---
97
+
98
+ ## ⚠️ Active Constraints (REDIRECT Signals)
99
+
100
+ | Constraint | Source | Date Set |
101
+ |------------|--------|----------|
102
+ | In the Aether repo, `.aether/` IS the source of truth — published directly to npm (private dirs excluded by .npmignore) | CLAUDE.md | Permanent |
103
+ | Never push without explicit user approval | CLAUDE.md Safety | Permanent |
104
+ | XML exchange should be automatic, not separate commands | User | 2026-02-16 |
105
+
106
+ ---
107
+
108
+ ## 💭 Active Pheromones (FOCUS Signals)
109
+
110
+ *None active*
111
+
112
+ ---
113
+
114
+ ## 📝 Recent Decisions
115
+
116
+ | Date | Decision | Rationale | Made By |
117
+ |------|----------|-----------|---------|
118
+ | 2026-02-16 | Remove /ant:export and /ant:import commands | User wants system integration, not new commands | User |
119
+ | 2026-02-16 | Complete Phase 4 | All exchange modules built and tested | Queen |
120
+ | 2026-02-16 | Pause for integration decision | Need user input on approach (A, B, or C) | Queen |
121
+
122
+ ---
123
+
124
+ ## 📊 Recent Activity (Last 10 Actions)
125
+
126
+ | Timestamp | Command | Result | Files Changed |
127
+ |-----------|---------|--------|---------------|
128
+ | 2026-02-16T20:49:04Z | pause-colony | Colony paused — test fixes and hook debugging completed | tests fixed: 18→0, hooks simplified |
129
+ | 2026-02-16T20:20:00Z | export/import removed | Commands deleted as requested | -2 files |
130
+ | 2026-02-16T20:18:00Z | registry-xml.sh | Created registry exchange module | +1 file |
131
+ | 2026-02-16T20:15:00Z | wisdom-xml.sh | Created wisdom exchange module | +1 file |
132
+ | 2026-02-16T20:14:00Z | pheromone-xml.sh | Fixed merge tests, 19/19 passing | 1 file |
133
+ | 2026-02-16T20:10:00Z | test-xml-roundtrip.sh | Comprehensive test suite | +1 file |
134
+ | 2026-02-16T20:00:00Z | xml-core.sh | Core XML utilities | +1 file |
135
+ | 2026-02-16T19:50:00Z | schemas/* | XSD schemas for validation | +4 files |
136
+
137
+ ---
138
+
139
+ ## 🔄 Next Steps
140
+
141
+ **AWAITING USER DECISION:**
142
+
143
+ How should XML exchange integrate into existing commands?
144
+
145
+ ### Option A: Pause/Resume Integration
146
+ - `/ant:pause-colony` → Auto-export to `.aether/exports/`
147
+ - `/ant:resume-colony` → Check for exports, offer to import
148
+
149
+ ### Option B: Seal/Init Integration
150
+ - `/ant:seal` → Export to `~/.aether/eternal/` (cross-colony)
151
+ - `/ant/init` → Check eternal memory, offer to seed new colony
152
+
153
+ ### Option C: Hybrid (Recommended)
154
+ - **Pause** → Export to `.aether/exports/` (local handoff)
155
+ - **Seal** → Export to `~/.aether/eternal/` (eternal memory)
156
+ - **Resume** → Import from both locations
157
+ - **Init** → Offer eternal memory as seed
158
+
159
+ ---
160
+
@@ -0,0 +1,84 @@
1
+ # QUEEN.md — Colony Wisdom
2
+
3
+ > Last evolved: 2026-02-15T13:08:15Z
4
+ > Colonies contributed: 0
5
+ > Wisdom version: 1.0.0
6
+
7
+ ---
8
+
9
+ ## 📜 Philosophies
10
+
11
+ Core beliefs that guide all colony work. These are validated through repeated successful application across multiple colonies.
12
+
13
+ - **colony-a** (2026-02-15T13:08:24Z): Test-driven development ensures quality
14
+
15
+ ---
16
+
17
+ ## 🧭 Patterns
18
+
19
+ Validated approaches that consistently work. These represent discovered best practices that have proven themselves in the field.
20
+
21
+ - **colony-b** (2026-02-15T13:08:28Z): Always validate inputs
22
+
23
+ ---
24
+
25
+ ## ⚠️ Redirects
26
+
27
+ Anti-patterns to avoid. These represent approaches that have caused problems and should be redirected away from.
28
+
29
+ - **colony-c** (2026-02-15T13:08:31Z): Never skip security checks
30
+
31
+ ---
32
+
33
+ ## 🔧 Stack Wisdom
34
+
35
+ Technology-specific insights and constraints detected through codebase analysis.
36
+
37
+ - **colony-d** (2026-02-15T13:08:36Z): Use jq for JSON in bash
38
+
39
+ ---
40
+
41
+ ## 🏛️ Decrees
42
+
43
+ User-mandated rules that override other guidance. These represent explicit directives from the Queen.
44
+
45
+ - **colony-e** (2026-02-15T13:08:40Z): All code must have tests
46
+
47
+ ---
48
+
49
+ ## 📊 Evolution Log
50
+
51
+ Track how wisdom has evolved over time.
52
+
53
+ | Date | Colony | Change | Details |
54
+ |------|--------|--------|---------|
55
+ | 2026-02-15T13:08:40Z | colony-e | promoted_decree | Added: All code must have tests... |
56
+ | 2026-02-15T13:08:36Z | colony-d | promoted_stack | Added: Use jq for JSON in bash... |
57
+ | 2026-02-15T13:08:31Z | colony-c | promoted_redirect | Added: Never skip security checks... |
58
+ | 2026-02-15T13:08:28Z | colony-b | promoted_pattern | Added: Always validate inputs... |
59
+ | 2026-02-15T13:08:24Z | colony-a | promoted_philosophy | Added: Test-driven development ensures quality... |
60
+ | 2026-02-15T13:08:15Z | system | initialized | QUEEN.md created from template |
61
+
62
+ ---
63
+
64
+ <!-- METADATA
65
+ {
66
+ "version": "1.0.0",
67
+ "last_evolved": "2026-02-15T13:08:40Z",
68
+ "colonies_contributed": ["colony-a"],
69
+ "promotion_thresholds": {
70
+ "philosophy": 5,
71
+ "pattern": 3,
72
+ "redirect": 2,
73
+ "stack": 1,
74
+ "decree": 0
75
+ },
76
+ "stats": {
77
+ "total_philosophies": 1,
78
+ "total_patterns": 0,
79
+ "total_redirects": 1,
80
+ "total_stack_entries": 1,
81
+ "total_decrees": 1
82
+ }
83
+ }
84
+ -->