aether-colony 3.1.3 → 3.1.4
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.
|
@@ -209,6 +209,7 @@ CONSTRAINTS: (none)
|
|
|
209
209
|
```bash
|
|
210
210
|
bash .aether/aether-utils.sh generate-ant-name "archaeologist"
|
|
211
211
|
bash .aether/aether-utils.sh spawn-log "Queen" "scout" "{archaeologist_name}" "Pre-build archaeology scan"
|
|
212
|
+
bash .aether/aether-utils.sh swarm-display-update "{archaeologist_name}" "scout" "excavating" "Pre-build archaeology scan" "Queen" '{"read":0,"grep":0,"edit":0,"bash":0}' 0 "fungus_garden" 15
|
|
212
213
|
```
|
|
213
214
|
|
|
214
215
|
Display:
|
|
@@ -257,9 +258,10 @@ CONSTRAINTS: (none)
|
|
|
257
258
|
|
|
258
259
|
**Wait for results** (blocking — use TaskOutput with `block: true`).
|
|
259
260
|
|
|
260
|
-
Log completion:
|
|
261
|
+
Log completion and update swarm display:
|
|
261
262
|
```bash
|
|
262
263
|
bash .aether/aether-utils.sh spawn-complete "{archaeologist_name}" "completed" "Pre-build archaeology scan"
|
|
264
|
+
bash .aether/aether-utils.sh swarm-display-update "{archaeologist_name}" "scout" "completed" "Pre-build archaeology scan" "Queen" '{"read":8,"grep":5,"edit":0,"bash":2}' 100 "fungus_garden" 100
|
|
263
265
|
```
|
|
264
266
|
|
|
265
267
|
3. **Store and display findings:**
|
|
@@ -218,6 +218,7 @@ CONSTRAINTS: (none)
|
|
|
218
218
|
```bash
|
|
219
219
|
bash .aether/aether-utils.sh generate-ant-name "archaeologist"
|
|
220
220
|
bash .aether/aether-utils.sh spawn-log "Queen" "scout" "{archaeologist_name}" "Pre-build archaeology scan"
|
|
221
|
+
bash .aether/aether-utils.sh swarm-display-update "{archaeologist_name}" "scout" "excavating" "Pre-build archaeology scan" "Queen" '{"read":0,"grep":0,"edit":0,"bash":0}' 0 "fungus_garden" 15
|
|
221
222
|
```
|
|
222
223
|
|
|
223
224
|
Display:
|
|
@@ -259,9 +260,10 @@ CONSTRAINTS: (none)
|
|
|
259
260
|
|
|
260
261
|
**Wait for results** (blocking — use TaskOutput with `block: true`).
|
|
261
262
|
|
|
262
|
-
Log completion:
|
|
263
|
+
Log completion and update swarm display:
|
|
263
264
|
```bash
|
|
264
265
|
bash .aether/aether-utils.sh spawn-complete "{archaeologist_name}" "completed" "Pre-build archaeology scan"
|
|
266
|
+
bash .aether/aether-utils.sh swarm-display-update "{archaeologist_name}" "scout" "completed" "Pre-build archaeology scan" "Queen" '{"read":8,"grep":5,"edit":0,"bash":2}' 100 "fungus_garden" 100
|
|
265
267
|
```
|
|
266
268
|
|
|
267
269
|
3. **Store and display findings:**
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to the Aether Colony project will be documented in this file
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.1.4] - 2026-02-15
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Archaeologist Visualization** — Added swarm display integration for the Archaeologist scout (Step 4.5). The archaeologist now appears in the visual display with proper emoji (🏺), progress tracking (15% → 100%), and tool usage stats when spawned during pre-build scans. (`.claude/commands/ant/build.md`, `.opencode/commands/ant/build.md`)
|
|
12
|
+
|
|
8
13
|
## [3.1.3] - 2026-02-15
|
|
9
14
|
|
|
10
15
|
### Fixed
|
package/package.json
CHANGED