diff --git a/.archeflow/config.yaml b/.archeflow/config.yaml index 1152d1e..4539eae 100644 --- a/.archeflow/config.yaml +++ b/.archeflow/config.yaml @@ -1,7 +1,7 @@ # ArcheFlow Configuration # Copy to your project's .archeflow/config.yaml and customize -version: "0.6.0" +version: "0.7.0" # Strategy — execution shape: pdca (cyclic), pipeline (linear), auto (task-based selection) strategy: auto diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index a85e164..2e59bd1 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "archeflow", "description": "Multi-agent orchestration with Jungian archetypes. PDCA quality cycles, shadow detection, git worktree isolation. Zero dependencies — works with any Claude Code session.", - "version": "0.6.0", + "version": "0.7.0", "author": { "name": "Chris Nennemann" }, diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c5c934..cb38f45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to ArcheFlow are documented in this file. +## [0.7.0] -- 2026-04-04 + +### Added +- Context isolation protocol in attention-filters skill and all 7 agent personas — agents receive only orchestrator-constructed context, no session bleed or cross-agent contamination +- Structured status tokens (`STATUS: DONE`, `DONE_WITH_CONCERNS`, `NEEDS_CONTEXT`, `BLOCKED`) for all agents with orchestrator parsing protocol in run skill +- Evidence-gated verification in check-phase — CRITICAL/WARNING findings require concrete evidence (command output, code citations, reproduction steps); banned speculative phrases auto-downgrade to INFO +- Plan granularity constraint in plan-phase and Creator — each change item must be a 2-5 minute task with exact file path, code block, and verify command +- Strategy abstraction with `pdca` (cyclic) and `pipeline` (linear) execution strategies, auto-selection by task type, and pipeline execution flow in run skill +- Experimental status and interdisciplinary framing in README + ## [0.6.0] -- 2026-04-04 ### Added diff --git a/docs/roadmap.md b/docs/roadmap.md index d420e56..cad9bb1 100644 --- a/docs/roadmap.md +++ b/docs/roadmap.md @@ -2,6 +2,14 @@ ## Completed +### v0.7.0 (2026-04-04) +- [x] Context isolation protocol for attention filters and all agent personas +- [x] Structured status tokens with orchestrator parsing protocol +- [x] Evidence-gated verification with banned phrases and auto-downgrade +- [x] Plan granularity constraint (2-5 min tasks with file path, code block, verify command) +- [x] Strategy abstraction (PDCA cyclic, pipeline linear, auto-selection) +- [x] Experimental status and interdisciplinary framing in README + ### v0.6.0 (2026-04-04) - [x] Expanded attention-filters skill (prompt templates, token budgets, cycle-back filtering, verification checklist) - [x] Explorer skip heuristic in plan-phase skill @@ -74,6 +82,7 @@ | Date | Version | Changes | |------|---------|---------| +| 2026-04-04 | v0.7.0 | Process rigor: context isolation, status tokens, evidence-gated verification, plan granularity, strategy abstraction | | 2026-04-04 | v0.6.0 | Quality/polish: expanded attention filters, Explorer skip heuristic, agent persona normalization, quickstart example | | 2026-04-04 | v0.5.0 | Robustness: lib validation, hook points, phase rollback, per-workflow models, regression detection, parallel reviewers | | 2026-04-04 | v0.4.0 | Confidence gates, mini-Explorer, worktree merge flow, rollback script, test-first gate, memory audit | diff --git a/skills/presence/SKILL.md b/skills/presence/SKILL.md index 352fd4b..6572244 100644 --- a/skills/presence/SKILL.md +++ b/skills/presence/SKILL.md @@ -89,12 +89,12 @@ Only show if the user explicitly asks or if `progress.dag_on_complete: true` in When ArcheFlow activates at session start (via the `using-archeflow` skill), show ONE line: ``` -archeflow v0.6.0 · 24 skills · writing domain detected +archeflow v0.7.0 · 24 skills · writing domain detected ``` Or for code projects: ``` -archeflow v0.6.0 · 24 skills · code domain +archeflow v0.7.0 · 24 skills · code domain ``` If ArcheFlow decides NOT to activate (simple task, single file): diff --git a/skills/using-archeflow/SKILL.md b/skills/using-archeflow/SKILL.md index 6d810d5..7c1f969 100644 --- a/skills/using-archeflow/SKILL.md +++ b/skills/using-archeflow/SKILL.md @@ -11,7 +11,7 @@ Multi-agent orchestration using archetypal roles and PDCA quality cycles. On activation, print ONE line: ``` -archeflow v0.6.0 · 25 skills · domain +archeflow v0.7.0 · 25 skills · domain ``` Where `` is auto-detected: `writing` if `colette.yaml` exists, `research` if paper/thesis files exist, `code` otherwise. Then proceed silently — no further announcement unless `archeflow:run` is invoked.