diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index c96d236e..cc7f276a 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -6,14 +6,14 @@ }, "metadata": { "description": "Loaf - An Opinionated Agentic Framework", - "version": "0.2.20" + "version": "0.2.21" }, "plugins": [ { "name": "loaf", "description": "Loaf - An Opinionated Agentic Framework", "source": "./plugins/loaf", - "version": "0.2.20", + "version": "0.2.21", "license": "MIT", "repository": "https://github.com/levifig/loaf" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c335984f..01bb925d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,24 @@ is a Loaf workflow staging section for curated entries before release. - _No unreleased changes yet._ +## [0.2.21] - 2026-08-10 + +### Added + +- `loaf state migrate alias-orphans` retires entity rows orphaned from the alias registry — the damage left when a project rekey invalidated every derived ID and a later import re-minted the tree. Classification proves twin-ship (legacy-salt derivation, or window-gated content identity) and iterates to a fixed point; unproven rows refuse by default and take explicit `--retire`/`--realias` dispositions that rehearse in preview; apply takes a backup first and writes an fsynced rollback manifest that restores every deleted row ([#159](https://github.com/levifig/loaf/pull/159)). +- `loaf state migrate journal-duplicates` is the sibling repair for journal entries, which carry no aliases: identical `(type, scope, message)` twins across the two import windows retire their older copy, ambiguous groups refuse, and the reference sweep shares one polymorphic-table enumeration with alias-orphans so the two repairs cannot drift ([#159](https://github.com/levifig/loaf/pull/159)). +- `loaf state doctor` now checks alias parity: for every project and aliased entity table, raw row counts must equal alias-reachable counts with zero dead aliases. Divergence reports as an error diagnostic naming the repair command — identity damage is detectable the day it happens instead of discoverable by accident at housekeeping ([#159](https://github.com/levifig/loaf/pull/159), ADR-028). +- `loaf hooks list`, `loaf hooks enable`, and `loaf hooks disable` operate individual hooks from the installed catalog. Enablement lives in the global database, user-scoped and host-local — absence means enabled, disable records tombstone rather than delete — and every verb reprojects the target's hook file through the full reconciler under a per-target lock ([#161](https://github.com/levifig/loaf/pull/161)). + +### Changed + +- Codex and Cursor hook files are no longer whole-file managed artifacts guarded by a digest. Install and upgrade now converge Loaf-owned entries per hook point — adding missing ones, updating changed ones, removing retired ones, and absorbing an operator-deleted entry once as a disabled record — while every non-Loaf entry survives value-identical and order-stable. Drift refusals are gone as a class, including the refusal on user-modified `hooks.json` files frozen since the pre-reset releases; integrity violations still fail closed and preserve the file ([#161](https://github.com/levifig/loaf/pull/161)). +- Markdown import resolves identity through the alias registry before deriving an ID — existing entities, sources, and journal rows are reused instead of re-minted, colliding sparks receive numbered aliases, and a spark whose message normalizes to an empty slug gets a content-hash alias so no row is born unreachable. Derived IDs are now mint-once opaque keys (ADR-028); for healthy databases a re-import is byte-stable ([#159](https://github.com/levifig/loaf/pull/159)). + +### Fixed + +- A project rekey followed by a markdown re-import could silently fork the identity space — every artifact re-inserted as an invisible twin, aliases re-pointed to the copies, and the list surfaces disagreeing with the housekeeping scanner about how much work exists. The importer fix removes the cause; the migrations repair existing damage; doctor parity detects any recurrence ([#159](https://github.com/levifig/loaf/pull/159)). + ## [0.2.20] - 2026-08-07 ### Changed diff --git a/bin/native/darwin-arm64/loaf b/bin/native/darwin-arm64/loaf index d801bd2d..e0b6eebf 100755 Binary files a/bin/native/darwin-arm64/loaf and b/bin/native/darwin-arm64/loaf differ diff --git a/dist/amp/.amp/plugins/loaf.ts b/dist/amp/.amp/plugins/loaf.ts index 87b20f57..0cdb860a 100644 --- a/dist/amp/.amp/plugins/loaf.ts +++ b/dist/amp/.amp/plugins/loaf.ts @@ -1,7 +1,7 @@ /** * Amp Plugin - Agent Skills Hooks * Auto-generated by loaf build system - * @version 0.2.20 + * @version 0.2.21 */ import type { PluginAPI } from '@ampcode/plugin'; diff --git a/dist/amp/.loaf-target-manifest.json b/dist/amp/.loaf-target-manifest.json index 293e95c1..dfce6dc2 100644 --- a/dist/amp/.loaf-target-manifest.json +++ b/dist/amp/.loaf-target-manifest.json @@ -1,7 +1,7 @@ { "version": 1, "target": "amp", - "package_version": "0.2.20", + "package_version": "0.2.21", "capability_contract_version": 3, "adapters": [ "amp-plugin-v1" @@ -18,7 +18,7 @@ "kind": "plugin", "source_path": ".amp/plugins/loaf.ts", "destination": "plugins/loaf.ts", - "sha256": "4ee5d7f790420e4a892924f4fa5d87e3ca8d35bcef9322fdd23866da993b49c5", + "sha256": "adb2c9e3937071569b1bcafa40f10690a115942e65716db79aa98cdf9323048b", "mode": 420 } ] diff --git a/dist/amp/skills/architecture/SKILL.md b/dist/amp/skills/architecture/SKILL.md index 356fb91a..fa6d718b 100644 --- a/dist/amp/skills/architecture/SKILL.md +++ b/dist/amp/skills/architecture/SKILL.md @@ -12,7 +12,7 @@ description: >- `decision(scope)` entry to the project journal instead). The ADR log is append-only — when circumstances change, write a new ADR that supersedes the old one. -version: 0.2.20 +version: 0.2.21 --- # Architecture diff --git a/dist/amp/skills/bootstrap/SKILL.md b/dist/amp/skills/bootstrap/SKILL.md index a00c9ce7..33ceb4e3 100644 --- a/dist/amp/skills/bootstrap/SKILL.md +++ b/dist/amp/skills/bootstrap/SKILL.md @@ -7,7 +7,7 @@ description: >- populated project documents and setup recommendations. Not for shaping features (use shape), problem discovery for a new concept (use pitch), or quick idea capture (use idea). -version: 0.2.20 +version: 0.2.21 --- # Bootstrap diff --git a/dist/amp/skills/brainstorm/SKILL.md b/dist/amp/skills/brainstorm/SKILL.md index 43dc7a93..470f51a4 100644 --- a/dist/amp/skills/brainstorm/SKILL.md +++ b/dist/amp/skills/brainstorm/SKILL.md @@ -8,7 +8,7 @@ description: >- agent-facing inquiry lifecycle that consumes this technique. Not for problem discovery as a ceremony (use pitch) or bounding a chosen direction (use shape). -version: 0.2.20 +version: 0.2.21 --- # Brainstorm diff --git a/dist/amp/skills/breakdown/SKILL.md b/dist/amp/skills/breakdown/SKILL.md index e4563022..e3a1260d 100644 --- a/dist/amp/skills/breakdown/SKILL.md +++ b/dist/amp/skills/breakdown/SKILL.md @@ -5,7 +5,7 @@ description: >- Use when the user asks "break this down" or "create tasks for this spec." Produces task files with estimates, dependencies, and acceptance criteria. Not for shaping ideas (use shape) or implementation work (use implement). -version: 0.2.20 +version: 0.2.21 --- # Breakdown diff --git a/dist/amp/skills/council/SKILL.md b/dist/amp/skills/council/SKILL.md index c301c947..14d370f5 100644 --- a/dist/amp/skills/council/SKILL.md +++ b/dist/amp/skills/council/SKILL.md @@ -7,7 +7,7 @@ description: >- the user wants a structured debate between domain-specific viewpoints. Not for single-perspective research (use research) or architectural decisions that don't need multi-agent deliberation (use architecture). -version: 0.2.20 +version: 0.2.21 --- # Council diff --git a/dist/amp/skills/database-design/SKILL.md b/dist/amp/skills/database-design/SKILL.md index 9d1f2b35..2b425760 100644 --- a/dist/amp/skills/database-design/SKILL.md +++ b/dist/amp/skills/database-design/SKILL.md @@ -7,7 +7,7 @@ description: >- database administration and development. Not for ORM usage in application code (use language-specific development skills) or infrastructure orchestration (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Database Skill diff --git a/dist/amp/skills/debugging/SKILL.md b/dist/amp/skills/debugging/SKILL.md index e6fe79f4..af1e0696 100644 --- a/dist/amp/skills/debugging/SKILL.md +++ b/dist/amp/skills/debugging/SKILL.md @@ -6,7 +6,7 @@ description: >- flaky tests. Provides methodology for root cause analysis and issue resolution. Not for writing new tests (use development skills) or security analysis (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Debugging diff --git a/dist/amp/skills/documentation-standards/SKILL.md b/dist/amp/skills/documentation-standards/SKILL.md index 06f3a474..c4aed9a3 100644 --- a/dist/amp/skills/documentation-standards/SKILL.md +++ b/dist/amp/skills/documentation-standards/SKILL.md @@ -6,7 +6,7 @@ description: >- reviewing documentation quality, or creating architecture diagrams. Not for inline code comments (use code style guides) or project READMEs (use project-specific conventions). -version: 0.2.20 +version: 0.2.21 --- # Documentation Standards diff --git a/dist/amp/skills/explore/SKILL.md b/dist/amp/skills/explore/SKILL.md index 99bdaef9..829912f8 100644 --- a/dist/amp/skills/explore/SKILL.md +++ b/dist/amp/skills/explore/SKILL.md @@ -12,7 +12,7 @@ description: >- question (use research), continuing implementation (use implement), processing the intake queue (use triage), shaping a bounded Change (use shape), problem discovery (use pitch), or quick capture (use idea). -version: 0.2.20 +version: 0.2.21 --- # Explore diff --git a/dist/amp/skills/foundations/SKILL.md b/dist/amp/skills/foundations/SKILL.md index adca5629..ddc91d6c 100644 --- a/dist/amp/skills/foundations/SKILL.md +++ b/dist/amp/skills/foundations/SKILL.md @@ -6,7 +6,7 @@ description: >- setting up project standards. Covers naming, TDD, verification, and review workflows. Not for git workflow (use git-workflow), debugging (use debugging), or security audits (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Code Standards diff --git a/dist/amp/skills/git-workflow/SKILL.md b/dist/amp/skills/git-workflow/SKILL.md index a31786f1..798f55df 100644 --- a/dist/amp/skills/git-workflow/SKILL.md +++ b/dist/amp/skills/git-workflow/SKILL.md @@ -6,7 +6,7 @@ description: >- PRs, or managing git history. Provides patterns for collaborative git workflows. Not for code style (use foundations) or CI/CD pipelines (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Git Workflow diff --git a/dist/amp/skills/go-development/SKILL.md b/dist/amp/skills/go-development/SKILL.md index 638be509..1dd85747 100644 --- a/dist/amp/skills/go-development/SKILL.md +++ b/dist/amp/skills/go-development/SKILL.md @@ -6,7 +6,7 @@ description: >- Follows Effective Go principles and community conventions. Not for database schema design (use database-design) or infrastructure orchestration (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Go Skill diff --git a/dist/amp/skills/handoff/SKILL.md b/dist/amp/skills/handoff/SKILL.md index 6414ab85..d52e141d 100644 --- a/dist/amp/skills/handoff/SKILL.md +++ b/dist/amp/skills/handoff/SKILL.md @@ -7,7 +7,7 @@ description: >- being parked for later. Not for routine journal continuity (use orchestration) or an end-of-conversation checkpoint (use wrap). Produces a disposable handoff artifact that housekeeping deletes after confirmed deprecation. -version: 0.2.20 +version: 0.2.21 --- # Handoff diff --git a/dist/amp/skills/housekeeping/SKILL.md b/dist/amp/skills/housekeeping/SKILL.md index f4eb4c96..e438c963 100644 --- a/dist/amp/skills/housekeeping/SKILL.md +++ b/dist/amp/skills/housekeeping/SKILL.md @@ -7,7 +7,7 @@ description: >- completed work, and ensures extracted knowledge is preserved. Not for strategic reflection (use reflect) or knowledge management (use knowledge-base). -version: 0.2.20 +version: 0.2.21 --- # Housekeeping diff --git a/dist/amp/skills/idea/SKILL.md b/dist/amp/skills/idea/SKILL.md index 6fa73846..f1c26882 100644 --- a/dist/amp/skills/idea/SKILL.md +++ b/dist/amp/skills/idea/SKILL.md @@ -8,7 +8,7 @@ description: >- tracking an Intent or handing to pitch. Not for problem discovery (use pitch), processing the intake queue (use triage), shaping (use shape), or agent-side divergent inquiry when direction is undecided (use explore as a technique). -version: 0.2.20 +version: 0.2.21 --- # Idea diff --git a/dist/amp/skills/implement/SKILL.md b/dist/amp/skills/implement/SKILL.md index 97c4b5e2..775c7548 100644 --- a/dist/amp/skills/implement/SKILL.md +++ b/dist/amp/skills/implement/SKILL.md @@ -7,7 +7,7 @@ description: >- delivering commits. Logs to the project journal and produces agent spawn plans and progress tracking. Not for shaping (use shape), breakdown (use breakdown), research, or review. -version: 0.2.20 +version: 0.2.21 --- # Implement diff --git a/dist/amp/skills/infrastructure-management/SKILL.md b/dist/amp/skills/infrastructure-management/SKILL.md index ea445134..696f3da3 100644 --- a/dist/amp/skills/infrastructure-management/SKILL.md +++ b/dist/amp/skills/infrastructure-management/SKILL.md @@ -6,7 +6,7 @@ description: >- managing deployments. Provides patterns for infrastructure as code. Not for application code (use development skills), database schema (use database-design), or security audits (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Infrastructure diff --git a/dist/amp/skills/interface-design/SKILL.md b/dist/amp/skills/interface-design/SKILL.md index 4d15bc87..a9199230 100644 --- a/dist/amp/skills/interface-design/SKILL.md +++ b/dist/amp/skills/interface-design/SKILL.md @@ -6,7 +6,7 @@ description: >- ensuring accessibility compliance. Not for frontend code (use typescript-development) or API design (use architecture or language-specific skills). -version: 0.2.20 +version: 0.2.21 --- # Design Principles diff --git a/dist/amp/skills/knowledge-base/SKILL.md b/dist/amp/skills/knowledge-base/SKILL.md index 68a65f71..de984ce7 100644 --- a/dist/amp/skills/knowledge-base/SKILL.md +++ b/dist/amp/skills/knowledge-base/SKILL.md @@ -6,7 +6,7 @@ description: >- covers: field, and the review workflow. Not for retrieval or search (use QMD directly), architectural decisions (use ADRs), or agent instructions (use AGENTS.md). -version: 0.2.20 +version: 0.2.21 --- # Knowledge Base diff --git a/dist/amp/skills/loaf-reference/SKILL.md b/dist/amp/skills/loaf-reference/SKILL.md index 036c2535..06baf7b8 100644 --- a/dist/amp/skills/loaf-reference/SKILL.md +++ b/dist/amp/skills/loaf-reference/SKILL.md @@ -7,7 +7,7 @@ description: >- when asked to upgrade, diagnose, repair, configure, or bring a Loaf project current. Not for workflow guidance (workflow skills own their CLI contracts) or build internals. -version: 0.2.20 +version: 0.2.21 --- # Loaf Reference diff --git a/dist/amp/skills/orchestration/SKILL.md b/dist/amp/skills/orchestration/SKILL.md index ccdd0e9f..2013e84f 100644 --- a/dist/amp/skills/orchestration/SKILL.md +++ b/dist/amp/skills/orchestration/SKILL.md @@ -5,7 +5,7 @@ description: >- integration, and council workflows. Use when delegating to agents or coordinating cross-cutting work across multiple agents. Not for single-task implementation (use direct tool delegation) or solo research (use research). -version: 0.2.20 +version: 0.2.21 --- # Orchestration diff --git a/dist/amp/skills/pitch/SKILL.md b/dist/amp/skills/pitch/SKILL.md index 0d12c60b..f34f451a 100644 --- a/dist/amp/skills/pitch/SKILL.md +++ b/dist/amp/skills/pitch/SKILL.md @@ -10,7 +10,7 @@ description: >- tasks, or PRs. Not for solution shaping (use shape), queue processing (use triage), quick capture (use idea), or open-ended divergent inquiry (use explore as an agent technique when pitch reveals the direction is undecided). -version: 0.2.20 +version: 0.2.21 --- # Pitch diff --git a/dist/amp/skills/power-systems-modeling/SKILL.md b/dist/amp/skills/power-systems-modeling/SKILL.md index e9f74725..6b55545b 100644 --- a/dist/amp/skills/power-systems-modeling/SKILL.md +++ b/dist/amp/skills/power-systems-modeling/SKILL.md @@ -6,7 +6,7 @@ description: >- thermal calculations, validating conductors, or computing sag and resistance. Not for infrastructure deployment (use infrastructure-management) or system architecture. -version: 0.2.20 +version: 0.2.21 --- # Power Systems Reference diff --git a/dist/amp/skills/python-development/SKILL.md b/dist/amp/skills/python-development/SKILL.md index 426d9b39..c0ce96a4 100644 --- a/dist/amp/skills/python-development/SKILL.md +++ b/dist/amp/skills/python-development/SKILL.md @@ -6,7 +6,7 @@ description: >- models, or tests. Provides patterns for modern Python development. Not for schema design (use database-design), infrastructure (use infrastructure-management), or frontend code (use typescript-development). -version: 0.2.20 +version: 0.2.21 --- # Python Development diff --git a/dist/amp/skills/refactor-deepen/SKILL.md b/dist/amp/skills/refactor-deepen/SKILL.md index a3862f7a..4e097404 100644 --- a/dist/amp/skills/refactor-deepen/SKILL.md +++ b/dist/amp/skills/refactor-deepen/SKILL.md @@ -7,7 +7,7 @@ description: >- improvements, or when the user asks "is this module too shallow?" or "where should we deepen this code?" Produces either a read-only report or a PLAN file with candidates, dependency categories, and proposed deepened modules. -version: 0.2.20 +version: 0.2.21 --- # Refactor-Deepen diff --git a/dist/amp/skills/reflect/SKILL.md b/dist/amp/skills/reflect/SKILL.md index 36b4a1d4..44322c58 100644 --- a/dist/amp/skills/reflect/SKILL.md +++ b/dist/amp/skills/reflect/SKILL.md @@ -6,7 +6,7 @@ description: >- VISION.md, STRATEGY.md, and ARCHITECTURE.md based on implementation experience. Not for pre-implementation strategy (use strategy) or ADRs (use architecture). -version: 0.2.20 +version: 0.2.21 --- # Reflect diff --git a/dist/amp/skills/release/SKILL.md b/dist/amp/skills/release/SKILL.md index 79a3db7f..510f4ee1 100644 --- a/dist/amp/skills/release/SKILL.md +++ b/dist/amp/skills/release/SKILL.md @@ -7,7 +7,7 @@ description: >- a release," "publish a version," "release from main," or asks whether enough landed work should become a release. Not for reviewing or merging a PR (use ship). -version: 0.2.20 +version: 0.2.21 --- # Release diff --git a/dist/amp/skills/research/SKILL.md b/dist/amp/skills/research/SKILL.md index a9cd0e8f..af98d9ac 100644 --- a/dist/amp/skills/research/SKILL.md +++ b/dist/amp/skills/research/SKILL.md @@ -6,7 +6,7 @@ description: >- Produces state assessments, research findings with ranked options, or vision change proposals. Not for problem discovery that should author a brief (use pitch), multi-agent coordination (use orchestration), or implementation. -version: 0.2.20 +version: 0.2.21 --- # Research diff --git a/dist/amp/skills/ruby-development/SKILL.md b/dist/amp/skills/ruby-development/SKILL.md index a3ebe72f..e3a57f6e 100644 --- a/dist/amp/skills/ruby-development/SKILL.md +++ b/dist/amp/skills/ruby-development/SKILL.md @@ -6,7 +6,7 @@ description: >- following Rails patterns. Follows DHH/37signals conventions. Not for database schema design (use database-design) or frontend outside Hotwire (use typescript-development). -version: 0.2.20 +version: 0.2.21 --- # Ruby Development diff --git a/dist/amp/skills/security-compliance/SKILL.md b/dist/amp/skills/security-compliance/SKILL.md index 0aaec9cd..8e396337 100644 --- a/dist/amp/skills/security-compliance/SKILL.md +++ b/dist/amp/skills/security-compliance/SKILL.md @@ -5,7 +5,7 @@ description: >- verification. Use when reviewing code for security, managing secrets, performing threat analysis, or running compliance audits. Not for debugging (use debugging) or general code review (use foundations). -version: 0.2.20 +version: 0.2.21 --- # Security & Compliance diff --git a/dist/amp/skills/shape/SKILL.md b/dist/amp/skills/shape/SKILL.md index 8feb3874..42fce86f 100644 --- a/dist/amp/skills/shape/SKILL.md +++ b/dist/amp/skills/shape/SKILL.md @@ -14,7 +14,7 @@ description: >- idea), problem discovery that should author a brief first (use pitch), or open-ended divergent thinking (agent technique: explore / brainstorm — user entry intent routes to pitch). -version: 0.2.20 +version: 0.2.21 --- # Shape diff --git a/dist/amp/skills/ship/SKILL.md b/dist/amp/skills/ship/SKILL.md index be3e8371..3b645f20 100644 --- a/dist/amp/skills/ship/SKILL.md +++ b/dist/amp/skills/ship/SKILL.md @@ -6,7 +6,7 @@ description: >- final merge gate. Produces a reviewed, squash-merged PR and post-merge cleanup. Not for version bumps, tags, GitHub Releases, or install verification (use release). -version: 0.2.20 +version: 0.2.21 --- # Ship diff --git a/dist/amp/skills/strategy/SKILL.md b/dist/amp/skills/strategy/SKILL.md index 62050c2e..a57cbf62 100644 --- a/dist/amp/skills/strategy/SKILL.md +++ b/dist/amp/skills/strategy/SKILL.md @@ -6,7 +6,7 @@ description: >- personas, market landscape analysis, and problem space definitions. Not for architecture (use architecture) or post-implementation reflection (use reflect). -version: 0.2.20 +version: 0.2.21 --- # Strategy diff --git a/dist/amp/skills/triage/SKILL.md b/dist/amp/skills/triage/SKILL.md index 9fabe6e1..0778654a 100644 --- a/dist/amp/skills/triage/SKILL.md +++ b/dist/amp/skills/triage/SKILL.md @@ -9,7 +9,7 @@ description: >- pitch, or hand to shape. Not for reading a single known item (use loaf intent show or journal directly), capturing new ideas (use idea), problem discovery (use pitch), or bounding one chosen direction (use shape). -version: 0.2.20 +version: 0.2.21 --- # Triage diff --git a/dist/amp/skills/typescript-development/SKILL.md b/dist/amp/skills/typescript-development/SKILL.md index f5b42282..f9becf4f 100644 --- a/dist/amp/skills/typescript-development/SKILL.md +++ b/dist/amp/skills/typescript-development/SKILL.md @@ -5,7 +5,7 @@ description: >- CSS, and Vitest testing. Use when writing TypeScript applications, React components, or Node.js services. Not for UI/UX design (use interface-design), database schema (use database-design), or Python (use python-development). -version: 0.2.20 +version: 0.2.21 --- # TypeScript Development diff --git a/dist/amp/skills/wrap/SKILL.md b/dist/amp/skills/wrap/SKILL.md index 46fee8be..ab64cc64 100644 --- a/dist/amp/skills/wrap/SKILL.md +++ b/dist/amp/skills/wrap/SKILL.md @@ -7,7 +7,7 @@ description: >- end of a work session or when the user asks "wrap up." Not for archiving (use housekeeping) or capturing ideas (use idea). Produces a Session Wrap-Up summary and an optional wrap journal entry. -version: 0.2.20 +version: 0.2.21 --- # Wrap diff --git a/dist/codex/.loaf-hook-catalog.json b/dist/codex/.loaf-hook-catalog.json index 7d0f8bf7..aa4a049a 100644 --- a/dist/codex/.loaf-hook-catalog.json +++ b/dist/codex/.loaf-hook-catalog.json @@ -1,7 +1,7 @@ { "version": 1, "target": "codex", - "package_version": "0.2.20", + "package_version": "0.2.21", "entries": [ { "event": "SessionStart", diff --git a/dist/codex/.loaf-target-manifest.json b/dist/codex/.loaf-target-manifest.json index 163accff..ff6f5f69 100644 --- a/dist/codex/.loaf-target-manifest.json +++ b/dist/codex/.loaf-target-manifest.json @@ -1,7 +1,7 @@ { "version": 1, "target": "codex", - "package_version": "0.2.20", + "package_version": "0.2.21", "capability_contract_version": 3, "adapters": [ "codex-session-start-v1" diff --git a/dist/codex/skills/architecture/SKILL.md b/dist/codex/skills/architecture/SKILL.md index 356fb91a..fa6d718b 100644 --- a/dist/codex/skills/architecture/SKILL.md +++ b/dist/codex/skills/architecture/SKILL.md @@ -12,7 +12,7 @@ description: >- `decision(scope)` entry to the project journal instead). The ADR log is append-only — when circumstances change, write a new ADR that supersedes the old one. -version: 0.2.20 +version: 0.2.21 --- # Architecture diff --git a/dist/codex/skills/bootstrap/SKILL.md b/dist/codex/skills/bootstrap/SKILL.md index a00c9ce7..33ceb4e3 100644 --- a/dist/codex/skills/bootstrap/SKILL.md +++ b/dist/codex/skills/bootstrap/SKILL.md @@ -7,7 +7,7 @@ description: >- populated project documents and setup recommendations. Not for shaping features (use shape), problem discovery for a new concept (use pitch), or quick idea capture (use idea). -version: 0.2.20 +version: 0.2.21 --- # Bootstrap diff --git a/dist/codex/skills/brainstorm/SKILL.md b/dist/codex/skills/brainstorm/SKILL.md index 43dc7a93..470f51a4 100644 --- a/dist/codex/skills/brainstorm/SKILL.md +++ b/dist/codex/skills/brainstorm/SKILL.md @@ -8,7 +8,7 @@ description: >- agent-facing inquiry lifecycle that consumes this technique. Not for problem discovery as a ceremony (use pitch) or bounding a chosen direction (use shape). -version: 0.2.20 +version: 0.2.21 --- # Brainstorm diff --git a/dist/codex/skills/breakdown/SKILL.md b/dist/codex/skills/breakdown/SKILL.md index e4563022..e3a1260d 100644 --- a/dist/codex/skills/breakdown/SKILL.md +++ b/dist/codex/skills/breakdown/SKILL.md @@ -5,7 +5,7 @@ description: >- Use when the user asks "break this down" or "create tasks for this spec." Produces task files with estimates, dependencies, and acceptance criteria. Not for shaping ideas (use shape) or implementation work (use implement). -version: 0.2.20 +version: 0.2.21 --- # Breakdown diff --git a/dist/codex/skills/council/SKILL.md b/dist/codex/skills/council/SKILL.md index c301c947..14d370f5 100644 --- a/dist/codex/skills/council/SKILL.md +++ b/dist/codex/skills/council/SKILL.md @@ -7,7 +7,7 @@ description: >- the user wants a structured debate between domain-specific viewpoints. Not for single-perspective research (use research) or architectural decisions that don't need multi-agent deliberation (use architecture). -version: 0.2.20 +version: 0.2.21 --- # Council diff --git a/dist/codex/skills/database-design/SKILL.md b/dist/codex/skills/database-design/SKILL.md index 9d1f2b35..2b425760 100644 --- a/dist/codex/skills/database-design/SKILL.md +++ b/dist/codex/skills/database-design/SKILL.md @@ -7,7 +7,7 @@ description: >- database administration and development. Not for ORM usage in application code (use language-specific development skills) or infrastructure orchestration (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Database Skill diff --git a/dist/codex/skills/debugging/SKILL.md b/dist/codex/skills/debugging/SKILL.md index e6fe79f4..af1e0696 100644 --- a/dist/codex/skills/debugging/SKILL.md +++ b/dist/codex/skills/debugging/SKILL.md @@ -6,7 +6,7 @@ description: >- flaky tests. Provides methodology for root cause analysis and issue resolution. Not for writing new tests (use development skills) or security analysis (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Debugging diff --git a/dist/codex/skills/documentation-standards/SKILL.md b/dist/codex/skills/documentation-standards/SKILL.md index 06f3a474..c4aed9a3 100644 --- a/dist/codex/skills/documentation-standards/SKILL.md +++ b/dist/codex/skills/documentation-standards/SKILL.md @@ -6,7 +6,7 @@ description: >- reviewing documentation quality, or creating architecture diagrams. Not for inline code comments (use code style guides) or project READMEs (use project-specific conventions). -version: 0.2.20 +version: 0.2.21 --- # Documentation Standards diff --git a/dist/codex/skills/explore/SKILL.md b/dist/codex/skills/explore/SKILL.md index 99bdaef9..829912f8 100644 --- a/dist/codex/skills/explore/SKILL.md +++ b/dist/codex/skills/explore/SKILL.md @@ -12,7 +12,7 @@ description: >- question (use research), continuing implementation (use implement), processing the intake queue (use triage), shaping a bounded Change (use shape), problem discovery (use pitch), or quick capture (use idea). -version: 0.2.20 +version: 0.2.21 --- # Explore diff --git a/dist/codex/skills/foundations/SKILL.md b/dist/codex/skills/foundations/SKILL.md index adca5629..ddc91d6c 100644 --- a/dist/codex/skills/foundations/SKILL.md +++ b/dist/codex/skills/foundations/SKILL.md @@ -6,7 +6,7 @@ description: >- setting up project standards. Covers naming, TDD, verification, and review workflows. Not for git workflow (use git-workflow), debugging (use debugging), or security audits (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Code Standards diff --git a/dist/codex/skills/git-workflow/SKILL.md b/dist/codex/skills/git-workflow/SKILL.md index a31786f1..798f55df 100644 --- a/dist/codex/skills/git-workflow/SKILL.md +++ b/dist/codex/skills/git-workflow/SKILL.md @@ -6,7 +6,7 @@ description: >- PRs, or managing git history. Provides patterns for collaborative git workflows. Not for code style (use foundations) or CI/CD pipelines (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Git Workflow diff --git a/dist/codex/skills/go-development/SKILL.md b/dist/codex/skills/go-development/SKILL.md index 638be509..1dd85747 100644 --- a/dist/codex/skills/go-development/SKILL.md +++ b/dist/codex/skills/go-development/SKILL.md @@ -6,7 +6,7 @@ description: >- Follows Effective Go principles and community conventions. Not for database schema design (use database-design) or infrastructure orchestration (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Go Skill diff --git a/dist/codex/skills/handoff/SKILL.md b/dist/codex/skills/handoff/SKILL.md index 6414ab85..d52e141d 100644 --- a/dist/codex/skills/handoff/SKILL.md +++ b/dist/codex/skills/handoff/SKILL.md @@ -7,7 +7,7 @@ description: >- being parked for later. Not for routine journal continuity (use orchestration) or an end-of-conversation checkpoint (use wrap). Produces a disposable handoff artifact that housekeeping deletes after confirmed deprecation. -version: 0.2.20 +version: 0.2.21 --- # Handoff diff --git a/dist/codex/skills/housekeeping/SKILL.md b/dist/codex/skills/housekeeping/SKILL.md index f4eb4c96..e438c963 100644 --- a/dist/codex/skills/housekeeping/SKILL.md +++ b/dist/codex/skills/housekeeping/SKILL.md @@ -7,7 +7,7 @@ description: >- completed work, and ensures extracted knowledge is preserved. Not for strategic reflection (use reflect) or knowledge management (use knowledge-base). -version: 0.2.20 +version: 0.2.21 --- # Housekeeping diff --git a/dist/codex/skills/idea/SKILL.md b/dist/codex/skills/idea/SKILL.md index 6fa73846..f1c26882 100644 --- a/dist/codex/skills/idea/SKILL.md +++ b/dist/codex/skills/idea/SKILL.md @@ -8,7 +8,7 @@ description: >- tracking an Intent or handing to pitch. Not for problem discovery (use pitch), processing the intake queue (use triage), shaping (use shape), or agent-side divergent inquiry when direction is undecided (use explore as a technique). -version: 0.2.20 +version: 0.2.21 --- # Idea diff --git a/dist/codex/skills/implement/SKILL.md b/dist/codex/skills/implement/SKILL.md index 97c4b5e2..775c7548 100644 --- a/dist/codex/skills/implement/SKILL.md +++ b/dist/codex/skills/implement/SKILL.md @@ -7,7 +7,7 @@ description: >- delivering commits. Logs to the project journal and produces agent spawn plans and progress tracking. Not for shaping (use shape), breakdown (use breakdown), research, or review. -version: 0.2.20 +version: 0.2.21 --- # Implement diff --git a/dist/codex/skills/infrastructure-management/SKILL.md b/dist/codex/skills/infrastructure-management/SKILL.md index ea445134..696f3da3 100644 --- a/dist/codex/skills/infrastructure-management/SKILL.md +++ b/dist/codex/skills/infrastructure-management/SKILL.md @@ -6,7 +6,7 @@ description: >- managing deployments. Provides patterns for infrastructure as code. Not for application code (use development skills), database schema (use database-design), or security audits (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Infrastructure diff --git a/dist/codex/skills/interface-design/SKILL.md b/dist/codex/skills/interface-design/SKILL.md index 4d15bc87..a9199230 100644 --- a/dist/codex/skills/interface-design/SKILL.md +++ b/dist/codex/skills/interface-design/SKILL.md @@ -6,7 +6,7 @@ description: >- ensuring accessibility compliance. Not for frontend code (use typescript-development) or API design (use architecture or language-specific skills). -version: 0.2.20 +version: 0.2.21 --- # Design Principles diff --git a/dist/codex/skills/knowledge-base/SKILL.md b/dist/codex/skills/knowledge-base/SKILL.md index 68a65f71..de984ce7 100644 --- a/dist/codex/skills/knowledge-base/SKILL.md +++ b/dist/codex/skills/knowledge-base/SKILL.md @@ -6,7 +6,7 @@ description: >- covers: field, and the review workflow. Not for retrieval or search (use QMD directly), architectural decisions (use ADRs), or agent instructions (use AGENTS.md). -version: 0.2.20 +version: 0.2.21 --- # Knowledge Base diff --git a/dist/codex/skills/loaf-reference/SKILL.md b/dist/codex/skills/loaf-reference/SKILL.md index 036c2535..06baf7b8 100644 --- a/dist/codex/skills/loaf-reference/SKILL.md +++ b/dist/codex/skills/loaf-reference/SKILL.md @@ -7,7 +7,7 @@ description: >- when asked to upgrade, diagnose, repair, configure, or bring a Loaf project current. Not for workflow guidance (workflow skills own their CLI contracts) or build internals. -version: 0.2.20 +version: 0.2.21 --- # Loaf Reference diff --git a/dist/codex/skills/orchestration/SKILL.md b/dist/codex/skills/orchestration/SKILL.md index ccdd0e9f..2013e84f 100644 --- a/dist/codex/skills/orchestration/SKILL.md +++ b/dist/codex/skills/orchestration/SKILL.md @@ -5,7 +5,7 @@ description: >- integration, and council workflows. Use when delegating to agents or coordinating cross-cutting work across multiple agents. Not for single-task implementation (use direct tool delegation) or solo research (use research). -version: 0.2.20 +version: 0.2.21 --- # Orchestration diff --git a/dist/codex/skills/pitch/SKILL.md b/dist/codex/skills/pitch/SKILL.md index 0d12c60b..f34f451a 100644 --- a/dist/codex/skills/pitch/SKILL.md +++ b/dist/codex/skills/pitch/SKILL.md @@ -10,7 +10,7 @@ description: >- tasks, or PRs. Not for solution shaping (use shape), queue processing (use triage), quick capture (use idea), or open-ended divergent inquiry (use explore as an agent technique when pitch reveals the direction is undecided). -version: 0.2.20 +version: 0.2.21 --- # Pitch diff --git a/dist/codex/skills/power-systems-modeling/SKILL.md b/dist/codex/skills/power-systems-modeling/SKILL.md index e9f74725..6b55545b 100644 --- a/dist/codex/skills/power-systems-modeling/SKILL.md +++ b/dist/codex/skills/power-systems-modeling/SKILL.md @@ -6,7 +6,7 @@ description: >- thermal calculations, validating conductors, or computing sag and resistance. Not for infrastructure deployment (use infrastructure-management) or system architecture. -version: 0.2.20 +version: 0.2.21 --- # Power Systems Reference diff --git a/dist/codex/skills/python-development/SKILL.md b/dist/codex/skills/python-development/SKILL.md index 426d9b39..c0ce96a4 100644 --- a/dist/codex/skills/python-development/SKILL.md +++ b/dist/codex/skills/python-development/SKILL.md @@ -6,7 +6,7 @@ description: >- models, or tests. Provides patterns for modern Python development. Not for schema design (use database-design), infrastructure (use infrastructure-management), or frontend code (use typescript-development). -version: 0.2.20 +version: 0.2.21 --- # Python Development diff --git a/dist/codex/skills/refactor-deepen/SKILL.md b/dist/codex/skills/refactor-deepen/SKILL.md index a3862f7a..4e097404 100644 --- a/dist/codex/skills/refactor-deepen/SKILL.md +++ b/dist/codex/skills/refactor-deepen/SKILL.md @@ -7,7 +7,7 @@ description: >- improvements, or when the user asks "is this module too shallow?" or "where should we deepen this code?" Produces either a read-only report or a PLAN file with candidates, dependency categories, and proposed deepened modules. -version: 0.2.20 +version: 0.2.21 --- # Refactor-Deepen diff --git a/dist/codex/skills/reflect/SKILL.md b/dist/codex/skills/reflect/SKILL.md index 36b4a1d4..44322c58 100644 --- a/dist/codex/skills/reflect/SKILL.md +++ b/dist/codex/skills/reflect/SKILL.md @@ -6,7 +6,7 @@ description: >- VISION.md, STRATEGY.md, and ARCHITECTURE.md based on implementation experience. Not for pre-implementation strategy (use strategy) or ADRs (use architecture). -version: 0.2.20 +version: 0.2.21 --- # Reflect diff --git a/dist/codex/skills/release/SKILL.md b/dist/codex/skills/release/SKILL.md index 79a3db7f..510f4ee1 100644 --- a/dist/codex/skills/release/SKILL.md +++ b/dist/codex/skills/release/SKILL.md @@ -7,7 +7,7 @@ description: >- a release," "publish a version," "release from main," or asks whether enough landed work should become a release. Not for reviewing or merging a PR (use ship). -version: 0.2.20 +version: 0.2.21 --- # Release diff --git a/dist/codex/skills/research/SKILL.md b/dist/codex/skills/research/SKILL.md index a9cd0e8f..af98d9ac 100644 --- a/dist/codex/skills/research/SKILL.md +++ b/dist/codex/skills/research/SKILL.md @@ -6,7 +6,7 @@ description: >- Produces state assessments, research findings with ranked options, or vision change proposals. Not for problem discovery that should author a brief (use pitch), multi-agent coordination (use orchestration), or implementation. -version: 0.2.20 +version: 0.2.21 --- # Research diff --git a/dist/codex/skills/ruby-development/SKILL.md b/dist/codex/skills/ruby-development/SKILL.md index a3ebe72f..e3a57f6e 100644 --- a/dist/codex/skills/ruby-development/SKILL.md +++ b/dist/codex/skills/ruby-development/SKILL.md @@ -6,7 +6,7 @@ description: >- following Rails patterns. Follows DHH/37signals conventions. Not for database schema design (use database-design) or frontend outside Hotwire (use typescript-development). -version: 0.2.20 +version: 0.2.21 --- # Ruby Development diff --git a/dist/codex/skills/security-compliance/SKILL.md b/dist/codex/skills/security-compliance/SKILL.md index 0aaec9cd..8e396337 100644 --- a/dist/codex/skills/security-compliance/SKILL.md +++ b/dist/codex/skills/security-compliance/SKILL.md @@ -5,7 +5,7 @@ description: >- verification. Use when reviewing code for security, managing secrets, performing threat analysis, or running compliance audits. Not for debugging (use debugging) or general code review (use foundations). -version: 0.2.20 +version: 0.2.21 --- # Security & Compliance diff --git a/dist/codex/skills/shape/SKILL.md b/dist/codex/skills/shape/SKILL.md index 8feb3874..42fce86f 100644 --- a/dist/codex/skills/shape/SKILL.md +++ b/dist/codex/skills/shape/SKILL.md @@ -14,7 +14,7 @@ description: >- idea), problem discovery that should author a brief first (use pitch), or open-ended divergent thinking (agent technique: explore / brainstorm — user entry intent routes to pitch). -version: 0.2.20 +version: 0.2.21 --- # Shape diff --git a/dist/codex/skills/ship/SKILL.md b/dist/codex/skills/ship/SKILL.md index be3e8371..3b645f20 100644 --- a/dist/codex/skills/ship/SKILL.md +++ b/dist/codex/skills/ship/SKILL.md @@ -6,7 +6,7 @@ description: >- final merge gate. Produces a reviewed, squash-merged PR and post-merge cleanup. Not for version bumps, tags, GitHub Releases, or install verification (use release). -version: 0.2.20 +version: 0.2.21 --- # Ship diff --git a/dist/codex/skills/strategy/SKILL.md b/dist/codex/skills/strategy/SKILL.md index 62050c2e..a57cbf62 100644 --- a/dist/codex/skills/strategy/SKILL.md +++ b/dist/codex/skills/strategy/SKILL.md @@ -6,7 +6,7 @@ description: >- personas, market landscape analysis, and problem space definitions. Not for architecture (use architecture) or post-implementation reflection (use reflect). -version: 0.2.20 +version: 0.2.21 --- # Strategy diff --git a/dist/codex/skills/triage/SKILL.md b/dist/codex/skills/triage/SKILL.md index 9fabe6e1..0778654a 100644 --- a/dist/codex/skills/triage/SKILL.md +++ b/dist/codex/skills/triage/SKILL.md @@ -9,7 +9,7 @@ description: >- pitch, or hand to shape. Not for reading a single known item (use loaf intent show or journal directly), capturing new ideas (use idea), problem discovery (use pitch), or bounding one chosen direction (use shape). -version: 0.2.20 +version: 0.2.21 --- # Triage diff --git a/dist/codex/skills/typescript-development/SKILL.md b/dist/codex/skills/typescript-development/SKILL.md index f5b42282..f9becf4f 100644 --- a/dist/codex/skills/typescript-development/SKILL.md +++ b/dist/codex/skills/typescript-development/SKILL.md @@ -5,7 +5,7 @@ description: >- CSS, and Vitest testing. Use when writing TypeScript applications, React components, or Node.js services. Not for UI/UX design (use interface-design), database schema (use database-design), or Python (use python-development). -version: 0.2.20 +version: 0.2.21 --- # TypeScript Development diff --git a/dist/codex/skills/wrap/SKILL.md b/dist/codex/skills/wrap/SKILL.md index 46fee8be..ab64cc64 100644 --- a/dist/codex/skills/wrap/SKILL.md +++ b/dist/codex/skills/wrap/SKILL.md @@ -7,7 +7,7 @@ description: >- end of a work session or when the user asks "wrap up." Not for archiving (use housekeeping) or capturing ideas (use idea). Produces a Session Wrap-Up summary and an optional wrap journal entry. -version: 0.2.20 +version: 0.2.21 --- # Wrap diff --git a/dist/cursor/.loaf-hook-catalog.json b/dist/cursor/.loaf-hook-catalog.json index 317bd3a3..9411ff64 100644 --- a/dist/cursor/.loaf-hook-catalog.json +++ b/dist/cursor/.loaf-hook-catalog.json @@ -1,7 +1,7 @@ { "version": 1, "target": "cursor", - "package_version": "0.2.20", + "package_version": "0.2.21", "entries": [ { "event": "preToolUse", diff --git a/dist/cursor/.loaf-target-manifest.json b/dist/cursor/.loaf-target-manifest.json index 99feeb7f..ad334f31 100644 --- a/dist/cursor/.loaf-target-manifest.json +++ b/dist/cursor/.loaf-target-manifest.json @@ -1,7 +1,7 @@ { "version": 1, "target": "cursor", - "package_version": "0.2.20", + "package_version": "0.2.21", "capability_contract_version": 3, "adapters": [ "cursor-session-start-v1" diff --git a/dist/cursor/agents/background-runner.md b/dist/cursor/agents/background-runner.md index 5425c554..95e52e7a 100644 --- a/dist/cursor/agents/background-runner.md +++ b/dist/cursor/agents/background-runner.md @@ -155,4 +155,4 @@ Background Agent ID: bg-20260123-143000-auth-security 4. Log completion to the project journal if the `loaf` CLI is available --- -version: 0.2.20 +version: 0.2.21 diff --git a/dist/cursor/agents/implementer.md b/dist/cursor/agents/implementer.md index 31f41ff4..bd4ef49c 100644 --- a/dist/cursor/agents/implementer.md +++ b/dist/cursor/agents/implementer.md @@ -33,4 +33,4 @@ You are an implementer. You have full write access to the codebase: code, tests, - Do not orchestrate other agents — that is the orchestrator's role. --- -version: 0.2.20 +version: 0.2.21 diff --git a/dist/cursor/agents/librarian.md b/dist/cursor/agents/librarian.md index d062f61c..d473fed6 100644 --- a/dist/cursor/agents/librarian.md +++ b/dist/cursor/agents/librarian.md @@ -52,4 +52,4 @@ repository and edit access scoped to `.agents/` only. - Scope all file operations to `.agents/` paths. --- -version: 0.2.20 +version: 0.2.21 diff --git a/dist/cursor/agents/researcher.md b/dist/cursor/agents/researcher.md index e8ba5937..6aeb7996 100644 --- a/dist/cursor/agents/researcher.md +++ b/dist/cursor/agents/researcher.md @@ -32,4 +32,4 @@ You are a researcher. You have read access to the codebase and web access to the - Do not orchestrate other agents — that is the orchestrator's role. --- -version: 0.2.20 +version: 0.2.21 diff --git a/dist/cursor/agents/reviewer.md b/dist/cursor/agents/reviewer.md index c6c532e4..85e049b5 100644 --- a/dist/cursor/agents/reviewer.md +++ b/dist/cursor/agents/reviewer.md @@ -30,4 +30,4 @@ You are a reviewer. You have read-only access to the codebase. This is not a lim - Do not orchestrate other agents — that is the orchestrator's role. --- -version: 0.2.20 +version: 0.2.21 diff --git a/dist/cursor/skills/architecture/SKILL.md b/dist/cursor/skills/architecture/SKILL.md index 356fb91a..fa6d718b 100644 --- a/dist/cursor/skills/architecture/SKILL.md +++ b/dist/cursor/skills/architecture/SKILL.md @@ -12,7 +12,7 @@ description: >- `decision(scope)` entry to the project journal instead). The ADR log is append-only — when circumstances change, write a new ADR that supersedes the old one. -version: 0.2.20 +version: 0.2.21 --- # Architecture diff --git a/dist/cursor/skills/bootstrap/SKILL.md b/dist/cursor/skills/bootstrap/SKILL.md index a00c9ce7..33ceb4e3 100644 --- a/dist/cursor/skills/bootstrap/SKILL.md +++ b/dist/cursor/skills/bootstrap/SKILL.md @@ -7,7 +7,7 @@ description: >- populated project documents and setup recommendations. Not for shaping features (use shape), problem discovery for a new concept (use pitch), or quick idea capture (use idea). -version: 0.2.20 +version: 0.2.21 --- # Bootstrap diff --git a/dist/cursor/skills/brainstorm/SKILL.md b/dist/cursor/skills/brainstorm/SKILL.md index 43dc7a93..470f51a4 100644 --- a/dist/cursor/skills/brainstorm/SKILL.md +++ b/dist/cursor/skills/brainstorm/SKILL.md @@ -8,7 +8,7 @@ description: >- agent-facing inquiry lifecycle that consumes this technique. Not for problem discovery as a ceremony (use pitch) or bounding a chosen direction (use shape). -version: 0.2.20 +version: 0.2.21 --- # Brainstorm diff --git a/dist/cursor/skills/breakdown/SKILL.md b/dist/cursor/skills/breakdown/SKILL.md index e4563022..e3a1260d 100644 --- a/dist/cursor/skills/breakdown/SKILL.md +++ b/dist/cursor/skills/breakdown/SKILL.md @@ -5,7 +5,7 @@ description: >- Use when the user asks "break this down" or "create tasks for this spec." Produces task files with estimates, dependencies, and acceptance criteria. Not for shaping ideas (use shape) or implementation work (use implement). -version: 0.2.20 +version: 0.2.21 --- # Breakdown diff --git a/dist/cursor/skills/council/SKILL.md b/dist/cursor/skills/council/SKILL.md index c301c947..14d370f5 100644 --- a/dist/cursor/skills/council/SKILL.md +++ b/dist/cursor/skills/council/SKILL.md @@ -7,7 +7,7 @@ description: >- the user wants a structured debate between domain-specific viewpoints. Not for single-perspective research (use research) or architectural decisions that don't need multi-agent deliberation (use architecture). -version: 0.2.20 +version: 0.2.21 --- # Council diff --git a/dist/cursor/skills/database-design/SKILL.md b/dist/cursor/skills/database-design/SKILL.md index 9d1f2b35..2b425760 100644 --- a/dist/cursor/skills/database-design/SKILL.md +++ b/dist/cursor/skills/database-design/SKILL.md @@ -7,7 +7,7 @@ description: >- database administration and development. Not for ORM usage in application code (use language-specific development skills) or infrastructure orchestration (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Database Skill diff --git a/dist/cursor/skills/debugging/SKILL.md b/dist/cursor/skills/debugging/SKILL.md index e6fe79f4..af1e0696 100644 --- a/dist/cursor/skills/debugging/SKILL.md +++ b/dist/cursor/skills/debugging/SKILL.md @@ -6,7 +6,7 @@ description: >- flaky tests. Provides methodology for root cause analysis and issue resolution. Not for writing new tests (use development skills) or security analysis (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Debugging diff --git a/dist/cursor/skills/documentation-standards/SKILL.md b/dist/cursor/skills/documentation-standards/SKILL.md index 06f3a474..c4aed9a3 100644 --- a/dist/cursor/skills/documentation-standards/SKILL.md +++ b/dist/cursor/skills/documentation-standards/SKILL.md @@ -6,7 +6,7 @@ description: >- reviewing documentation quality, or creating architecture diagrams. Not for inline code comments (use code style guides) or project READMEs (use project-specific conventions). -version: 0.2.20 +version: 0.2.21 --- # Documentation Standards diff --git a/dist/cursor/skills/explore/SKILL.md b/dist/cursor/skills/explore/SKILL.md index 99bdaef9..829912f8 100644 --- a/dist/cursor/skills/explore/SKILL.md +++ b/dist/cursor/skills/explore/SKILL.md @@ -12,7 +12,7 @@ description: >- question (use research), continuing implementation (use implement), processing the intake queue (use triage), shaping a bounded Change (use shape), problem discovery (use pitch), or quick capture (use idea). -version: 0.2.20 +version: 0.2.21 --- # Explore diff --git a/dist/cursor/skills/foundations/SKILL.md b/dist/cursor/skills/foundations/SKILL.md index adca5629..ddc91d6c 100644 --- a/dist/cursor/skills/foundations/SKILL.md +++ b/dist/cursor/skills/foundations/SKILL.md @@ -6,7 +6,7 @@ description: >- setting up project standards. Covers naming, TDD, verification, and review workflows. Not for git workflow (use git-workflow), debugging (use debugging), or security audits (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Code Standards diff --git a/dist/cursor/skills/git-workflow/SKILL.md b/dist/cursor/skills/git-workflow/SKILL.md index a31786f1..798f55df 100644 --- a/dist/cursor/skills/git-workflow/SKILL.md +++ b/dist/cursor/skills/git-workflow/SKILL.md @@ -6,7 +6,7 @@ description: >- PRs, or managing git history. Provides patterns for collaborative git workflows. Not for code style (use foundations) or CI/CD pipelines (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Git Workflow diff --git a/dist/cursor/skills/go-development/SKILL.md b/dist/cursor/skills/go-development/SKILL.md index 638be509..1dd85747 100644 --- a/dist/cursor/skills/go-development/SKILL.md +++ b/dist/cursor/skills/go-development/SKILL.md @@ -6,7 +6,7 @@ description: >- Follows Effective Go principles and community conventions. Not for database schema design (use database-design) or infrastructure orchestration (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Go Skill diff --git a/dist/cursor/skills/handoff/SKILL.md b/dist/cursor/skills/handoff/SKILL.md index 6414ab85..d52e141d 100644 --- a/dist/cursor/skills/handoff/SKILL.md +++ b/dist/cursor/skills/handoff/SKILL.md @@ -7,7 +7,7 @@ description: >- being parked for later. Not for routine journal continuity (use orchestration) or an end-of-conversation checkpoint (use wrap). Produces a disposable handoff artifact that housekeeping deletes after confirmed deprecation. -version: 0.2.20 +version: 0.2.21 --- # Handoff diff --git a/dist/cursor/skills/housekeeping/SKILL.md b/dist/cursor/skills/housekeeping/SKILL.md index f4eb4c96..e438c963 100644 --- a/dist/cursor/skills/housekeeping/SKILL.md +++ b/dist/cursor/skills/housekeeping/SKILL.md @@ -7,7 +7,7 @@ description: >- completed work, and ensures extracted knowledge is preserved. Not for strategic reflection (use reflect) or knowledge management (use knowledge-base). -version: 0.2.20 +version: 0.2.21 --- # Housekeeping diff --git a/dist/cursor/skills/idea/SKILL.md b/dist/cursor/skills/idea/SKILL.md index 6fa73846..f1c26882 100644 --- a/dist/cursor/skills/idea/SKILL.md +++ b/dist/cursor/skills/idea/SKILL.md @@ -8,7 +8,7 @@ description: >- tracking an Intent or handing to pitch. Not for problem discovery (use pitch), processing the intake queue (use triage), shaping (use shape), or agent-side divergent inquiry when direction is undecided (use explore as a technique). -version: 0.2.20 +version: 0.2.21 --- # Idea diff --git a/dist/cursor/skills/implement/SKILL.md b/dist/cursor/skills/implement/SKILL.md index 97c4b5e2..775c7548 100644 --- a/dist/cursor/skills/implement/SKILL.md +++ b/dist/cursor/skills/implement/SKILL.md @@ -7,7 +7,7 @@ description: >- delivering commits. Logs to the project journal and produces agent spawn plans and progress tracking. Not for shaping (use shape), breakdown (use breakdown), research, or review. -version: 0.2.20 +version: 0.2.21 --- # Implement diff --git a/dist/cursor/skills/infrastructure-management/SKILL.md b/dist/cursor/skills/infrastructure-management/SKILL.md index ea445134..696f3da3 100644 --- a/dist/cursor/skills/infrastructure-management/SKILL.md +++ b/dist/cursor/skills/infrastructure-management/SKILL.md @@ -6,7 +6,7 @@ description: >- managing deployments. Provides patterns for infrastructure as code. Not for application code (use development skills), database schema (use database-design), or security audits (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Infrastructure diff --git a/dist/cursor/skills/interface-design/SKILL.md b/dist/cursor/skills/interface-design/SKILL.md index 4d15bc87..a9199230 100644 --- a/dist/cursor/skills/interface-design/SKILL.md +++ b/dist/cursor/skills/interface-design/SKILL.md @@ -6,7 +6,7 @@ description: >- ensuring accessibility compliance. Not for frontend code (use typescript-development) or API design (use architecture or language-specific skills). -version: 0.2.20 +version: 0.2.21 --- # Design Principles diff --git a/dist/cursor/skills/knowledge-base/SKILL.md b/dist/cursor/skills/knowledge-base/SKILL.md index 68a65f71..de984ce7 100644 --- a/dist/cursor/skills/knowledge-base/SKILL.md +++ b/dist/cursor/skills/knowledge-base/SKILL.md @@ -6,7 +6,7 @@ description: >- covers: field, and the review workflow. Not for retrieval or search (use QMD directly), architectural decisions (use ADRs), or agent instructions (use AGENTS.md). -version: 0.2.20 +version: 0.2.21 --- # Knowledge Base diff --git a/dist/cursor/skills/loaf-reference/SKILL.md b/dist/cursor/skills/loaf-reference/SKILL.md index 036c2535..06baf7b8 100644 --- a/dist/cursor/skills/loaf-reference/SKILL.md +++ b/dist/cursor/skills/loaf-reference/SKILL.md @@ -7,7 +7,7 @@ description: >- when asked to upgrade, diagnose, repair, configure, or bring a Loaf project current. Not for workflow guidance (workflow skills own their CLI contracts) or build internals. -version: 0.2.20 +version: 0.2.21 --- # Loaf Reference diff --git a/dist/cursor/skills/orchestration/SKILL.md b/dist/cursor/skills/orchestration/SKILL.md index ccdd0e9f..2013e84f 100644 --- a/dist/cursor/skills/orchestration/SKILL.md +++ b/dist/cursor/skills/orchestration/SKILL.md @@ -5,7 +5,7 @@ description: >- integration, and council workflows. Use when delegating to agents or coordinating cross-cutting work across multiple agents. Not for single-task implementation (use direct tool delegation) or solo research (use research). -version: 0.2.20 +version: 0.2.21 --- # Orchestration diff --git a/dist/cursor/skills/pitch/SKILL.md b/dist/cursor/skills/pitch/SKILL.md index 0d12c60b..f34f451a 100644 --- a/dist/cursor/skills/pitch/SKILL.md +++ b/dist/cursor/skills/pitch/SKILL.md @@ -10,7 +10,7 @@ description: >- tasks, or PRs. Not for solution shaping (use shape), queue processing (use triage), quick capture (use idea), or open-ended divergent inquiry (use explore as an agent technique when pitch reveals the direction is undecided). -version: 0.2.20 +version: 0.2.21 --- # Pitch diff --git a/dist/cursor/skills/power-systems-modeling/SKILL.md b/dist/cursor/skills/power-systems-modeling/SKILL.md index e9f74725..6b55545b 100644 --- a/dist/cursor/skills/power-systems-modeling/SKILL.md +++ b/dist/cursor/skills/power-systems-modeling/SKILL.md @@ -6,7 +6,7 @@ description: >- thermal calculations, validating conductors, or computing sag and resistance. Not for infrastructure deployment (use infrastructure-management) or system architecture. -version: 0.2.20 +version: 0.2.21 --- # Power Systems Reference diff --git a/dist/cursor/skills/python-development/SKILL.md b/dist/cursor/skills/python-development/SKILL.md index 426d9b39..c0ce96a4 100644 --- a/dist/cursor/skills/python-development/SKILL.md +++ b/dist/cursor/skills/python-development/SKILL.md @@ -6,7 +6,7 @@ description: >- models, or tests. Provides patterns for modern Python development. Not for schema design (use database-design), infrastructure (use infrastructure-management), or frontend code (use typescript-development). -version: 0.2.20 +version: 0.2.21 --- # Python Development diff --git a/dist/cursor/skills/refactor-deepen/SKILL.md b/dist/cursor/skills/refactor-deepen/SKILL.md index a3862f7a..4e097404 100644 --- a/dist/cursor/skills/refactor-deepen/SKILL.md +++ b/dist/cursor/skills/refactor-deepen/SKILL.md @@ -7,7 +7,7 @@ description: >- improvements, or when the user asks "is this module too shallow?" or "where should we deepen this code?" Produces either a read-only report or a PLAN file with candidates, dependency categories, and proposed deepened modules. -version: 0.2.20 +version: 0.2.21 --- # Refactor-Deepen diff --git a/dist/cursor/skills/reflect/SKILL.md b/dist/cursor/skills/reflect/SKILL.md index 36b4a1d4..44322c58 100644 --- a/dist/cursor/skills/reflect/SKILL.md +++ b/dist/cursor/skills/reflect/SKILL.md @@ -6,7 +6,7 @@ description: >- VISION.md, STRATEGY.md, and ARCHITECTURE.md based on implementation experience. Not for pre-implementation strategy (use strategy) or ADRs (use architecture). -version: 0.2.20 +version: 0.2.21 --- # Reflect diff --git a/dist/cursor/skills/release/SKILL.md b/dist/cursor/skills/release/SKILL.md index 79a3db7f..510f4ee1 100644 --- a/dist/cursor/skills/release/SKILL.md +++ b/dist/cursor/skills/release/SKILL.md @@ -7,7 +7,7 @@ description: >- a release," "publish a version," "release from main," or asks whether enough landed work should become a release. Not for reviewing or merging a PR (use ship). -version: 0.2.20 +version: 0.2.21 --- # Release diff --git a/dist/cursor/skills/research/SKILL.md b/dist/cursor/skills/research/SKILL.md index a9cd0e8f..af98d9ac 100644 --- a/dist/cursor/skills/research/SKILL.md +++ b/dist/cursor/skills/research/SKILL.md @@ -6,7 +6,7 @@ description: >- Produces state assessments, research findings with ranked options, or vision change proposals. Not for problem discovery that should author a brief (use pitch), multi-agent coordination (use orchestration), or implementation. -version: 0.2.20 +version: 0.2.21 --- # Research diff --git a/dist/cursor/skills/ruby-development/SKILL.md b/dist/cursor/skills/ruby-development/SKILL.md index a3ebe72f..e3a57f6e 100644 --- a/dist/cursor/skills/ruby-development/SKILL.md +++ b/dist/cursor/skills/ruby-development/SKILL.md @@ -6,7 +6,7 @@ description: >- following Rails patterns. Follows DHH/37signals conventions. Not for database schema design (use database-design) or frontend outside Hotwire (use typescript-development). -version: 0.2.20 +version: 0.2.21 --- # Ruby Development diff --git a/dist/cursor/skills/security-compliance/SKILL.md b/dist/cursor/skills/security-compliance/SKILL.md index 0aaec9cd..8e396337 100644 --- a/dist/cursor/skills/security-compliance/SKILL.md +++ b/dist/cursor/skills/security-compliance/SKILL.md @@ -5,7 +5,7 @@ description: >- verification. Use when reviewing code for security, managing secrets, performing threat analysis, or running compliance audits. Not for debugging (use debugging) or general code review (use foundations). -version: 0.2.20 +version: 0.2.21 --- # Security & Compliance diff --git a/dist/cursor/skills/shape/SKILL.md b/dist/cursor/skills/shape/SKILL.md index 8feb3874..42fce86f 100644 --- a/dist/cursor/skills/shape/SKILL.md +++ b/dist/cursor/skills/shape/SKILL.md @@ -14,7 +14,7 @@ description: >- idea), problem discovery that should author a brief first (use pitch), or open-ended divergent thinking (agent technique: explore / brainstorm — user entry intent routes to pitch). -version: 0.2.20 +version: 0.2.21 --- # Shape diff --git a/dist/cursor/skills/ship/SKILL.md b/dist/cursor/skills/ship/SKILL.md index be3e8371..3b645f20 100644 --- a/dist/cursor/skills/ship/SKILL.md +++ b/dist/cursor/skills/ship/SKILL.md @@ -6,7 +6,7 @@ description: >- final merge gate. Produces a reviewed, squash-merged PR and post-merge cleanup. Not for version bumps, tags, GitHub Releases, or install verification (use release). -version: 0.2.20 +version: 0.2.21 --- # Ship diff --git a/dist/cursor/skills/strategy/SKILL.md b/dist/cursor/skills/strategy/SKILL.md index 62050c2e..a57cbf62 100644 --- a/dist/cursor/skills/strategy/SKILL.md +++ b/dist/cursor/skills/strategy/SKILL.md @@ -6,7 +6,7 @@ description: >- personas, market landscape analysis, and problem space definitions. Not for architecture (use architecture) or post-implementation reflection (use reflect). -version: 0.2.20 +version: 0.2.21 --- # Strategy diff --git a/dist/cursor/skills/triage/SKILL.md b/dist/cursor/skills/triage/SKILL.md index 9fabe6e1..0778654a 100644 --- a/dist/cursor/skills/triage/SKILL.md +++ b/dist/cursor/skills/triage/SKILL.md @@ -9,7 +9,7 @@ description: >- pitch, or hand to shape. Not for reading a single known item (use loaf intent show or journal directly), capturing new ideas (use idea), problem discovery (use pitch), or bounding one chosen direction (use shape). -version: 0.2.20 +version: 0.2.21 --- # Triage diff --git a/dist/cursor/skills/typescript-development/SKILL.md b/dist/cursor/skills/typescript-development/SKILL.md index f5b42282..f9becf4f 100644 --- a/dist/cursor/skills/typescript-development/SKILL.md +++ b/dist/cursor/skills/typescript-development/SKILL.md @@ -5,7 +5,7 @@ description: >- CSS, and Vitest testing. Use when writing TypeScript applications, React components, or Node.js services. Not for UI/UX design (use interface-design), database schema (use database-design), or Python (use python-development). -version: 0.2.20 +version: 0.2.21 --- # TypeScript Development diff --git a/dist/cursor/skills/wrap/SKILL.md b/dist/cursor/skills/wrap/SKILL.md index 46fee8be..ab64cc64 100644 --- a/dist/cursor/skills/wrap/SKILL.md +++ b/dist/cursor/skills/wrap/SKILL.md @@ -7,7 +7,7 @@ description: >- end of a work session or when the user asks "wrap up." Not for archiving (use housekeeping) or capturing ideas (use idea). Produces a Session Wrap-Up summary and an optional wrap journal entry. -version: 0.2.20 +version: 0.2.21 --- # Wrap diff --git a/dist/opencode/.loaf-target-manifest.json b/dist/opencode/.loaf-target-manifest.json index 4cac118a..d8bfc72a 100644 --- a/dist/opencode/.loaf-target-manifest.json +++ b/dist/opencode/.loaf-target-manifest.json @@ -1,7 +1,7 @@ { "version": 1, "target": "opencode", - "package_version": "0.2.20", + "package_version": "0.2.21", "capability_contract_version": 3, "adapters": [ "opencode-plugin-v1" @@ -114,7 +114,7 @@ "kind": "plugin", "source_path": "plugins/hooks.ts", "destination": "plugins/hooks.ts", - "sha256": "bc46b68b592e8b2232001703c3ba4b2bda739992db488a36ec37b14fc77f74f2", + "sha256": "16fee6f0fbd5e3b55514e8d64f5b4885ffff08823d57339cb968d09c31c60663", "mode": 420 } ] diff --git a/dist/opencode/agents/background-runner.md b/dist/opencode/agents/background-runner.md index c312a9dd..258d59df 100644 --- a/dist/opencode/agents/background-runner.md +++ b/dist/opencode/agents/background-runner.md @@ -156,4 +156,4 @@ Background Agent ID: bg-20260123-143000-auth-security 4. Log completion to the project journal if the `loaf` CLI is available --- -version: 0.2.20 +version: 0.2.21 diff --git a/dist/opencode/agents/implementer.md b/dist/opencode/agents/implementer.md index e6a41afd..24b16f2e 100644 --- a/dist/opencode/agents/implementer.md +++ b/dist/opencode/agents/implementer.md @@ -32,4 +32,4 @@ You are an implementer. You have full write access to the codebase: code, tests, - Do not orchestrate other agents — that is the orchestrator's role. --- -version: 0.2.20 +version: 0.2.21 diff --git a/dist/opencode/agents/librarian.md b/dist/opencode/agents/librarian.md index 122a274b..2a89c24e 100644 --- a/dist/opencode/agents/librarian.md +++ b/dist/opencode/agents/librarian.md @@ -53,4 +53,4 @@ repository and edit access scoped to `.agents/` only. - Scope all file operations to `.agents/` paths. --- -version: 0.2.20 +version: 0.2.21 diff --git a/dist/opencode/agents/researcher.md b/dist/opencode/agents/researcher.md index 7d3d4287..fb051216 100644 --- a/dist/opencode/agents/researcher.md +++ b/dist/opencode/agents/researcher.md @@ -27,4 +27,4 @@ You are a researcher. You have read access to the codebase and web access to the - Do not orchestrate other agents — that is the orchestrator's role. --- -version: 0.2.20 +version: 0.2.21 diff --git a/dist/opencode/agents/reviewer.md b/dist/opencode/agents/reviewer.md index a53058fc..9a4f6389 100644 --- a/dist/opencode/agents/reviewer.md +++ b/dist/opencode/agents/reviewer.md @@ -27,4 +27,4 @@ You are a reviewer. You have read-only access to the codebase. This is not a lim - Do not orchestrate other agents — that is the orchestrator's role. --- -version: 0.2.20 +version: 0.2.21 diff --git a/dist/opencode/commands/architecture.md b/dist/opencode/commands/architecture.md index a19b3226..10695838 100644 --- a/dist/opencode/commands/architecture.md +++ b/dist/opencode/commands/architecture.md @@ -12,7 +12,7 @@ description: >- append-only — when circumstances change, write a new ADR that supersedes the old one. subtask: false -version: 0.2.20 +version: 0.2.21 --- # Architecture diff --git a/dist/opencode/commands/bootstrap.md b/dist/opencode/commands/bootstrap.md index ce6744ba..1a545947 100644 --- a/dist/opencode/commands/bootstrap.md +++ b/dist/opencode/commands/bootstrap.md @@ -6,7 +6,7 @@ description: >- populated project documents and setup recommendations. Not for shaping features (use shape), problem discovery for a new concept (use pitch), or quick idea capture (use idea). -version: 0.2.20 +version: 0.2.21 --- # Bootstrap diff --git a/dist/opencode/commands/breakdown.md b/dist/opencode/commands/breakdown.md index dfee946c..8f442854 100644 --- a/dist/opencode/commands/breakdown.md +++ b/dist/opencode/commands/breakdown.md @@ -5,7 +5,7 @@ description: >- Produces task files with estimates, dependencies, and acceptance criteria. Not for shaping ideas (use shape) or implementation work (use implement). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Breakdown diff --git a/dist/opencode/commands/council.md b/dist/opencode/commands/council.md index 5dd7feed..f7342b16 100644 --- a/dist/opencode/commands/council.md +++ b/dist/opencode/commands/council.md @@ -7,7 +7,7 @@ description: >- single-perspective research (use research) or architectural decisions that don't need multi-agent deliberation (use architecture). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Council diff --git a/dist/opencode/commands/debugging.md b/dist/opencode/commands/debugging.md index daed03cd..a61322ae 100644 --- a/dist/opencode/commands/debugging.md +++ b/dist/opencode/commands/debugging.md @@ -5,7 +5,7 @@ description: >- flaky tests. Provides methodology for root cause analysis and issue resolution. Not for writing new tests (use development skills) or security analysis (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Debugging diff --git a/dist/opencode/commands/handoff.md b/dist/opencode/commands/handoff.md index 31f773af..cfc743aa 100644 --- a/dist/opencode/commands/handoff.md +++ b/dist/opencode/commands/handoff.md @@ -7,7 +7,7 @@ description: >- or an end-of-conversation checkpoint (use wrap). Produces a disposable handoff artifact that housekeeping deletes after confirmed deprecation. subtask: false -version: 0.2.20 +version: 0.2.21 --- # Handoff diff --git a/dist/opencode/commands/housekeeping.md b/dist/opencode/commands/housekeeping.md index d9822d44..e40f2ae0 100644 --- a/dist/opencode/commands/housekeeping.md +++ b/dist/opencode/commands/housekeeping.md @@ -7,7 +7,7 @@ description: >- strategic reflection (use reflect) or knowledge management (use knowledge-base). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Housekeeping diff --git a/dist/opencode/commands/idea.md b/dist/opencode/commands/idea.md index 376735e7..1016b5bd 100644 --- a/dist/opencode/commands/idea.md +++ b/dist/opencode/commands/idea.md @@ -8,7 +8,7 @@ description: >- processing the intake queue (use triage), shaping (use shape), or agent-side divergent inquiry when direction is undecided (use explore as a technique). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Idea diff --git a/dist/opencode/commands/implement.md b/dist/opencode/commands/implement.md index e52e081a..9823b74e 100644 --- a/dist/opencode/commands/implement.md +++ b/dist/opencode/commands/implement.md @@ -7,7 +7,7 @@ description: >- and progress tracking. Not for shaping (use shape), breakdown (use breakdown), research, or review. subtask: false -version: 0.2.20 +version: 0.2.21 --- # Implement diff --git a/dist/opencode/commands/pitch.md b/dist/opencode/commands/pitch.md index 47446561..88be85de 100644 --- a/dist/opencode/commands/pitch.md +++ b/dist/opencode/commands/pitch.md @@ -9,7 +9,7 @@ description: >- tasks, or PRs. Not for solution shaping (use shape), queue processing (use triage), quick capture (use idea), or open-ended divergent inquiry (use explore as an agent technique when pitch reveals the direction is undecided). -version: 0.2.20 +version: 0.2.21 --- # Pitch diff --git a/dist/opencode/commands/refactor-deepen.md b/dist/opencode/commands/refactor-deepen.md index 4f687d66..fc5bc3fc 100644 --- a/dist/opencode/commands/refactor-deepen.md +++ b/dist/opencode/commands/refactor-deepen.md @@ -6,7 +6,7 @@ description: >- improvements, or when the user asks "is this module too shallow?" or "where should we deepen this code?" Produces either a read-only report or a PLAN file with candidates, dependency categories, and proposed deepened modules. -version: 0.2.20 +version: 0.2.21 --- # Refactor-Deepen diff --git a/dist/opencode/commands/reflect.md b/dist/opencode/commands/reflect.md index eebd42fc..515ce3b9 100644 --- a/dist/opencode/commands/reflect.md +++ b/dist/opencode/commands/reflect.md @@ -6,7 +6,7 @@ description: >- experience. Not for pre-implementation strategy (use strategy) or ADRs (use architecture). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Reflect diff --git a/dist/opencode/commands/release.md b/dist/opencode/commands/release.md index 0135e000..2579a68f 100644 --- a/dist/opencode/commands/release.md +++ b/dist/opencode/commands/release.md @@ -6,7 +6,7 @@ description: >- a release," "publish a version," "release from main," or asks whether enough landed work should become a release. Not for reviewing or merging a PR (use ship). -version: 0.2.20 +version: 0.2.21 --- # Release diff --git a/dist/opencode/commands/research.md b/dist/opencode/commands/research.md index dbdb64b5..6164f078 100644 --- a/dist/opencode/commands/research.md +++ b/dist/opencode/commands/research.md @@ -6,7 +6,7 @@ description: >- change proposals. Not for problem discovery that should author a brief (use pitch), multi-agent coordination (use orchestration), or implementation. subtask: false -version: 0.2.20 +version: 0.2.21 --- # Research diff --git a/dist/opencode/commands/shape.md b/dist/opencode/commands/shape.md index bc07721d..fdef168c 100644 --- a/dist/opencode/commands/shape.md +++ b/dist/opencode/commands/shape.md @@ -14,7 +14,7 @@ description: >- open-ended divergent thinking (agent technique: explore / brainstorm — user entry intent routes to pitch). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Shape diff --git a/dist/opencode/commands/ship.md b/dist/opencode/commands/ship.md index 955d8207..22a19a0a 100644 --- a/dist/opencode/commands/ship.md +++ b/dist/opencode/commands/ship.md @@ -5,7 +5,7 @@ description: >- final merge gate. Produces a reviewed, squash-merged PR and post-merge cleanup. Not for version bumps, tags, GitHub Releases, or install verification (use release). -version: 0.2.20 +version: 0.2.21 --- # Ship diff --git a/dist/opencode/commands/strategy.md b/dist/opencode/commands/strategy.md index 3ea6d441..d747a20f 100644 --- a/dist/opencode/commands/strategy.md +++ b/dist/opencode/commands/strategy.md @@ -6,7 +6,7 @@ description: >- architecture (use architecture) or post-implementation reflection (use reflect). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Strategy diff --git a/dist/opencode/commands/triage.md b/dist/opencode/commands/triage.md index 3a1b7fcf..10223d76 100644 --- a/dist/opencode/commands/triage.md +++ b/dist/opencode/commands/triage.md @@ -9,7 +9,7 @@ description: >- show or journal directly), capturing new ideas (use idea), problem discovery (use pitch), or bounding one chosen direction (use shape). user-invocable: true -version: 0.2.20 +version: 0.2.21 --- # Triage diff --git a/dist/opencode/commands/wrap.md b/dist/opencode/commands/wrap.md index d93e1780..fd833576 100644 --- a/dist/opencode/commands/wrap.md +++ b/dist/opencode/commands/wrap.md @@ -7,7 +7,7 @@ description: >- housekeeping) or capturing ideas (use idea). Produces a Session Wrap-Up summary and an optional wrap journal entry. user-invocable: true -version: 0.2.20 +version: 0.2.21 --- # Wrap diff --git a/dist/opencode/plugins/hooks.ts b/dist/opencode/plugins/hooks.ts index 3dd86b8c..e1d5bff7 100644 --- a/dist/opencode/plugins/hooks.ts +++ b/dist/opencode/plugins/hooks.ts @@ -1,7 +1,7 @@ /** * OpenCode Plugin - Agent Skills Hooks * Auto-generated by loaf build system - * @version 0.2.20 + * @version 0.2.21 */ import { execFile } from 'child_process'; diff --git a/dist/opencode/skills/architecture/SKILL.md b/dist/opencode/skills/architecture/SKILL.md index 27709db5..165d8015 100644 --- a/dist/opencode/skills/architecture/SKILL.md +++ b/dist/opencode/skills/architecture/SKILL.md @@ -13,7 +13,7 @@ description: >- append-only — when circumstances change, write a new ADR that supersedes the old one. subtask: false -version: 0.2.20 +version: 0.2.21 --- # Architecture diff --git a/dist/opencode/skills/bootstrap/SKILL.md b/dist/opencode/skills/bootstrap/SKILL.md index a00c9ce7..33ceb4e3 100644 --- a/dist/opencode/skills/bootstrap/SKILL.md +++ b/dist/opencode/skills/bootstrap/SKILL.md @@ -7,7 +7,7 @@ description: >- populated project documents and setup recommendations. Not for shaping features (use shape), problem discovery for a new concept (use pitch), or quick idea capture (use idea). -version: 0.2.20 +version: 0.2.21 --- # Bootstrap diff --git a/dist/opencode/skills/brainstorm/SKILL.md b/dist/opencode/skills/brainstorm/SKILL.md index 2e2eedaa..1b7ec28c 100644 --- a/dist/opencode/skills/brainstorm/SKILL.md +++ b/dist/opencode/skills/brainstorm/SKILL.md @@ -9,7 +9,7 @@ description: >- discovery as a ceremony (use pitch) or bounding a chosen direction (use shape). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Brainstorm diff --git a/dist/opencode/skills/breakdown/SKILL.md b/dist/opencode/skills/breakdown/SKILL.md index 6e7d03fd..d69c7142 100644 --- a/dist/opencode/skills/breakdown/SKILL.md +++ b/dist/opencode/skills/breakdown/SKILL.md @@ -6,7 +6,7 @@ description: >- Produces task files with estimates, dependencies, and acceptance criteria. Not for shaping ideas (use shape) or implementation work (use implement). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Breakdown diff --git a/dist/opencode/skills/council/SKILL.md b/dist/opencode/skills/council/SKILL.md index 027f7a68..dd406998 100644 --- a/dist/opencode/skills/council/SKILL.md +++ b/dist/opencode/skills/council/SKILL.md @@ -8,7 +8,7 @@ description: >- single-perspective research (use research) or architectural decisions that don't need multi-agent deliberation (use architecture). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Council diff --git a/dist/opencode/skills/database-design/SKILL.md b/dist/opencode/skills/database-design/SKILL.md index 9d1f2b35..2b425760 100644 --- a/dist/opencode/skills/database-design/SKILL.md +++ b/dist/opencode/skills/database-design/SKILL.md @@ -7,7 +7,7 @@ description: >- database administration and development. Not for ORM usage in application code (use language-specific development skills) or infrastructure orchestration (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Database Skill diff --git a/dist/opencode/skills/debugging/SKILL.md b/dist/opencode/skills/debugging/SKILL.md index e6fe79f4..af1e0696 100644 --- a/dist/opencode/skills/debugging/SKILL.md +++ b/dist/opencode/skills/debugging/SKILL.md @@ -6,7 +6,7 @@ description: >- flaky tests. Provides methodology for root cause analysis and issue resolution. Not for writing new tests (use development skills) or security analysis (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Debugging diff --git a/dist/opencode/skills/documentation-standards/SKILL.md b/dist/opencode/skills/documentation-standards/SKILL.md index 06f3a474..c4aed9a3 100644 --- a/dist/opencode/skills/documentation-standards/SKILL.md +++ b/dist/opencode/skills/documentation-standards/SKILL.md @@ -6,7 +6,7 @@ description: >- reviewing documentation quality, or creating architecture diagrams. Not for inline code comments (use code style guides) or project READMEs (use project-specific conventions). -version: 0.2.20 +version: 0.2.21 --- # Documentation Standards diff --git a/dist/opencode/skills/explore/SKILL.md b/dist/opencode/skills/explore/SKILL.md index 99bdaef9..829912f8 100644 --- a/dist/opencode/skills/explore/SKILL.md +++ b/dist/opencode/skills/explore/SKILL.md @@ -12,7 +12,7 @@ description: >- question (use research), continuing implementation (use implement), processing the intake queue (use triage), shaping a bounded Change (use shape), problem discovery (use pitch), or quick capture (use idea). -version: 0.2.20 +version: 0.2.21 --- # Explore diff --git a/dist/opencode/skills/foundations/SKILL.md b/dist/opencode/skills/foundations/SKILL.md index adca5629..ddc91d6c 100644 --- a/dist/opencode/skills/foundations/SKILL.md +++ b/dist/opencode/skills/foundations/SKILL.md @@ -6,7 +6,7 @@ description: >- setting up project standards. Covers naming, TDD, verification, and review workflows. Not for git workflow (use git-workflow), debugging (use debugging), or security audits (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Code Standards diff --git a/dist/opencode/skills/git-workflow/SKILL.md b/dist/opencode/skills/git-workflow/SKILL.md index a31786f1..798f55df 100644 --- a/dist/opencode/skills/git-workflow/SKILL.md +++ b/dist/opencode/skills/git-workflow/SKILL.md @@ -6,7 +6,7 @@ description: >- PRs, or managing git history. Provides patterns for collaborative git workflows. Not for code style (use foundations) or CI/CD pipelines (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Git Workflow diff --git a/dist/opencode/skills/go-development/SKILL.md b/dist/opencode/skills/go-development/SKILL.md index 638be509..1dd85747 100644 --- a/dist/opencode/skills/go-development/SKILL.md +++ b/dist/opencode/skills/go-development/SKILL.md @@ -6,7 +6,7 @@ description: >- Follows Effective Go principles and community conventions. Not for database schema design (use database-design) or infrastructure orchestration (use infrastructure-management). -version: 0.2.20 +version: 0.2.21 --- # Go Skill diff --git a/dist/opencode/skills/handoff/SKILL.md b/dist/opencode/skills/handoff/SKILL.md index 53b59798..474c6798 100644 --- a/dist/opencode/skills/handoff/SKILL.md +++ b/dist/opencode/skills/handoff/SKILL.md @@ -8,7 +8,7 @@ description: >- or an end-of-conversation checkpoint (use wrap). Produces a disposable handoff artifact that housekeeping deletes after confirmed deprecation. subtask: false -version: 0.2.20 +version: 0.2.21 --- # Handoff diff --git a/dist/opencode/skills/housekeeping/SKILL.md b/dist/opencode/skills/housekeeping/SKILL.md index b50e05ed..14d051f5 100644 --- a/dist/opencode/skills/housekeeping/SKILL.md +++ b/dist/opencode/skills/housekeeping/SKILL.md @@ -8,7 +8,7 @@ description: >- strategic reflection (use reflect) or knowledge management (use knowledge-base). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Housekeeping diff --git a/dist/opencode/skills/idea/SKILL.md b/dist/opencode/skills/idea/SKILL.md index fd3867bf..2a4784f1 100644 --- a/dist/opencode/skills/idea/SKILL.md +++ b/dist/opencode/skills/idea/SKILL.md @@ -9,7 +9,7 @@ description: >- processing the intake queue (use triage), shaping (use shape), or agent-side divergent inquiry when direction is undecided (use explore as a technique). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Idea diff --git a/dist/opencode/skills/implement/SKILL.md b/dist/opencode/skills/implement/SKILL.md index 885aeed4..ece60cd6 100644 --- a/dist/opencode/skills/implement/SKILL.md +++ b/dist/opencode/skills/implement/SKILL.md @@ -8,7 +8,7 @@ description: >- and progress tracking. Not for shaping (use shape), breakdown (use breakdown), research, or review. subtask: false -version: 0.2.20 +version: 0.2.21 --- # Implement diff --git a/dist/opencode/skills/infrastructure-management/SKILL.md b/dist/opencode/skills/infrastructure-management/SKILL.md index ea445134..696f3da3 100644 --- a/dist/opencode/skills/infrastructure-management/SKILL.md +++ b/dist/opencode/skills/infrastructure-management/SKILL.md @@ -6,7 +6,7 @@ description: >- managing deployments. Provides patterns for infrastructure as code. Not for application code (use development skills), database schema (use database-design), or security audits (use security-compliance). -version: 0.2.20 +version: 0.2.21 --- # Infrastructure diff --git a/dist/opencode/skills/interface-design/SKILL.md b/dist/opencode/skills/interface-design/SKILL.md index 4d15bc87..a9199230 100644 --- a/dist/opencode/skills/interface-design/SKILL.md +++ b/dist/opencode/skills/interface-design/SKILL.md @@ -6,7 +6,7 @@ description: >- ensuring accessibility compliance. Not for frontend code (use typescript-development) or API design (use architecture or language-specific skills). -version: 0.2.20 +version: 0.2.21 --- # Design Principles diff --git a/dist/opencode/skills/knowledge-base/SKILL.md b/dist/opencode/skills/knowledge-base/SKILL.md index 68a65f71..de984ce7 100644 --- a/dist/opencode/skills/knowledge-base/SKILL.md +++ b/dist/opencode/skills/knowledge-base/SKILL.md @@ -6,7 +6,7 @@ description: >- covers: field, and the review workflow. Not for retrieval or search (use QMD directly), architectural decisions (use ADRs), or agent instructions (use AGENTS.md). -version: 0.2.20 +version: 0.2.21 --- # Knowledge Base diff --git a/dist/opencode/skills/loaf-reference/SKILL.md b/dist/opencode/skills/loaf-reference/SKILL.md index 036c2535..06baf7b8 100644 --- a/dist/opencode/skills/loaf-reference/SKILL.md +++ b/dist/opencode/skills/loaf-reference/SKILL.md @@ -7,7 +7,7 @@ description: >- when asked to upgrade, diagnose, repair, configure, or bring a Loaf project current. Not for workflow guidance (workflow skills own their CLI contracts) or build internals. -version: 0.2.20 +version: 0.2.21 --- # Loaf Reference diff --git a/dist/opencode/skills/orchestration/SKILL.md b/dist/opencode/skills/orchestration/SKILL.md index ccdd0e9f..2013e84f 100644 --- a/dist/opencode/skills/orchestration/SKILL.md +++ b/dist/opencode/skills/orchestration/SKILL.md @@ -5,7 +5,7 @@ description: >- integration, and council workflows. Use when delegating to agents or coordinating cross-cutting work across multiple agents. Not for single-task implementation (use direct tool delegation) or solo research (use research). -version: 0.2.20 +version: 0.2.21 --- # Orchestration diff --git a/dist/opencode/skills/pitch/SKILL.md b/dist/opencode/skills/pitch/SKILL.md index 0d12c60b..f34f451a 100644 --- a/dist/opencode/skills/pitch/SKILL.md +++ b/dist/opencode/skills/pitch/SKILL.md @@ -10,7 +10,7 @@ description: >- tasks, or PRs. Not for solution shaping (use shape), queue processing (use triage), quick capture (use idea), or open-ended divergent inquiry (use explore as an agent technique when pitch reveals the direction is undecided). -version: 0.2.20 +version: 0.2.21 --- # Pitch diff --git a/dist/opencode/skills/power-systems-modeling/SKILL.md b/dist/opencode/skills/power-systems-modeling/SKILL.md index e9f74725..6b55545b 100644 --- a/dist/opencode/skills/power-systems-modeling/SKILL.md +++ b/dist/opencode/skills/power-systems-modeling/SKILL.md @@ -6,7 +6,7 @@ description: >- thermal calculations, validating conductors, or computing sag and resistance. Not for infrastructure deployment (use infrastructure-management) or system architecture. -version: 0.2.20 +version: 0.2.21 --- # Power Systems Reference diff --git a/dist/opencode/skills/python-development/SKILL.md b/dist/opencode/skills/python-development/SKILL.md index 426d9b39..c0ce96a4 100644 --- a/dist/opencode/skills/python-development/SKILL.md +++ b/dist/opencode/skills/python-development/SKILL.md @@ -6,7 +6,7 @@ description: >- models, or tests. Provides patterns for modern Python development. Not for schema design (use database-design), infrastructure (use infrastructure-management), or frontend code (use typescript-development). -version: 0.2.20 +version: 0.2.21 --- # Python Development diff --git a/dist/opencode/skills/refactor-deepen/SKILL.md b/dist/opencode/skills/refactor-deepen/SKILL.md index a3862f7a..4e097404 100644 --- a/dist/opencode/skills/refactor-deepen/SKILL.md +++ b/dist/opencode/skills/refactor-deepen/SKILL.md @@ -7,7 +7,7 @@ description: >- improvements, or when the user asks "is this module too shallow?" or "where should we deepen this code?" Produces either a read-only report or a PLAN file with candidates, dependency categories, and proposed deepened modules. -version: 0.2.20 +version: 0.2.21 --- # Refactor-Deepen diff --git a/dist/opencode/skills/reflect/SKILL.md b/dist/opencode/skills/reflect/SKILL.md index cf86f3cf..9cffd72b 100644 --- a/dist/opencode/skills/reflect/SKILL.md +++ b/dist/opencode/skills/reflect/SKILL.md @@ -7,7 +7,7 @@ description: >- experience. Not for pre-implementation strategy (use strategy) or ADRs (use architecture). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Reflect diff --git a/dist/opencode/skills/release/SKILL.md b/dist/opencode/skills/release/SKILL.md index 79a3db7f..510f4ee1 100644 --- a/dist/opencode/skills/release/SKILL.md +++ b/dist/opencode/skills/release/SKILL.md @@ -7,7 +7,7 @@ description: >- a release," "publish a version," "release from main," or asks whether enough landed work should become a release. Not for reviewing or merging a PR (use ship). -version: 0.2.20 +version: 0.2.21 --- # Release diff --git a/dist/opencode/skills/research/SKILL.md b/dist/opencode/skills/research/SKILL.md index 8e36d538..e3e949a3 100644 --- a/dist/opencode/skills/research/SKILL.md +++ b/dist/opencode/skills/research/SKILL.md @@ -7,7 +7,7 @@ description: >- change proposals. Not for problem discovery that should author a brief (use pitch), multi-agent coordination (use orchestration), or implementation. subtask: false -version: 0.2.20 +version: 0.2.21 --- # Research diff --git a/dist/opencode/skills/ruby-development/SKILL.md b/dist/opencode/skills/ruby-development/SKILL.md index a3ebe72f..e3a57f6e 100644 --- a/dist/opencode/skills/ruby-development/SKILL.md +++ b/dist/opencode/skills/ruby-development/SKILL.md @@ -6,7 +6,7 @@ description: >- following Rails patterns. Follows DHH/37signals conventions. Not for database schema design (use database-design) or frontend outside Hotwire (use typescript-development). -version: 0.2.20 +version: 0.2.21 --- # Ruby Development diff --git a/dist/opencode/skills/security-compliance/SKILL.md b/dist/opencode/skills/security-compliance/SKILL.md index 0aaec9cd..8e396337 100644 --- a/dist/opencode/skills/security-compliance/SKILL.md +++ b/dist/opencode/skills/security-compliance/SKILL.md @@ -5,7 +5,7 @@ description: >- verification. Use when reviewing code for security, managing secrets, performing threat analysis, or running compliance audits. Not for debugging (use debugging) or general code review (use foundations). -version: 0.2.20 +version: 0.2.21 --- # Security & Compliance diff --git a/dist/opencode/skills/shape/SKILL.md b/dist/opencode/skills/shape/SKILL.md index 929f6105..88bc4c6c 100644 --- a/dist/opencode/skills/shape/SKILL.md +++ b/dist/opencode/skills/shape/SKILL.md @@ -15,7 +15,7 @@ description: >- open-ended divergent thinking (agent technique: explore / brainstorm — user entry intent routes to pitch). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Shape diff --git a/dist/opencode/skills/ship/SKILL.md b/dist/opencode/skills/ship/SKILL.md index be3e8371..3b645f20 100644 --- a/dist/opencode/skills/ship/SKILL.md +++ b/dist/opencode/skills/ship/SKILL.md @@ -6,7 +6,7 @@ description: >- final merge gate. Produces a reviewed, squash-merged PR and post-merge cleanup. Not for version bumps, tags, GitHub Releases, or install verification (use release). -version: 0.2.20 +version: 0.2.21 --- # Ship diff --git a/dist/opencode/skills/strategy/SKILL.md b/dist/opencode/skills/strategy/SKILL.md index 3b2577e6..8fe74a79 100644 --- a/dist/opencode/skills/strategy/SKILL.md +++ b/dist/opencode/skills/strategy/SKILL.md @@ -7,7 +7,7 @@ description: >- architecture (use architecture) or post-implementation reflection (use reflect). subtask: false -version: 0.2.20 +version: 0.2.21 --- # Strategy diff --git a/dist/opencode/skills/triage/SKILL.md b/dist/opencode/skills/triage/SKILL.md index 03d657a5..25bcdec6 100644 --- a/dist/opencode/skills/triage/SKILL.md +++ b/dist/opencode/skills/triage/SKILL.md @@ -10,7 +10,7 @@ description: >- show or journal directly), capturing new ideas (use idea), problem discovery (use pitch), or bounding one chosen direction (use shape). user-invocable: true -version: 0.2.20 +version: 0.2.21 --- # Triage diff --git a/dist/opencode/skills/typescript-development/SKILL.md b/dist/opencode/skills/typescript-development/SKILL.md index f5b42282..f9becf4f 100644 --- a/dist/opencode/skills/typescript-development/SKILL.md +++ b/dist/opencode/skills/typescript-development/SKILL.md @@ -5,7 +5,7 @@ description: >- CSS, and Vitest testing. Use when writing TypeScript applications, React components, or Node.js services. Not for UI/UX design (use interface-design), database schema (use database-design), or Python (use python-development). -version: 0.2.20 +version: 0.2.21 --- # TypeScript Development diff --git a/dist/opencode/skills/wrap/SKILL.md b/dist/opencode/skills/wrap/SKILL.md index 0573e3c8..9e119f62 100644 --- a/dist/opencode/skills/wrap/SKILL.md +++ b/dist/opencode/skills/wrap/SKILL.md @@ -8,7 +8,7 @@ description: >- housekeeping) or capturing ideas (use idea). Produces a Session Wrap-Up summary and an optional wrap journal entry. user-invocable: true -version: 0.2.20 +version: 0.2.21 --- # Wrap diff --git a/docs/changes/20260808-hooks-entry-reconciliation/research/claude-code-2.1.226-plugin-startup-smoke.json b/docs/changes/20260808-hooks-entry-reconciliation/research/claude-code-2.1.226-plugin-startup-smoke.json index e4b1f8dd..f9e4b84c 100644 --- a/docs/changes/20260808-hooks-entry-reconciliation/research/claude-code-2.1.226-plugin-startup-smoke.json +++ b/docs/changes/20260808-hooks-entry-reconciliation/research/claude-code-2.1.226-plugin-startup-smoke.json @@ -1,6 +1,6 @@ { "evidence_version": 2, - "timestamp": "2026-08-10T02:23:19.543Z", + "timestamp": "2026-08-10T09:01:57.252Z", "target": "claude-code", "surface": "cli", "version": "2.1.226", @@ -41,7 +41,7 @@ "stderr_empty": true, "model_visible_marker_observed": true, "assistant_marker_match": true, - "marker": "LOAF_CLAUDE_STARTUP_SMOKE_6878FA7C0B19", + "marker": "LOAF_CLAUDE_STARTUP_SMOKE_17B09C5DE3D1", "hook_observation": { "event_name": "SessionStart:startup", "native_json": true, @@ -52,6 +52,6 @@ "hooks_path": "plugins/loaf/hooks/hooks.json", "hooks_sha256": "564917493bfa795fee8a067e235e13eec5f992e098cb94540d2202cc6fe3cad4", "native_binary_path": "plugins/loaf/bin/native/darwin-arm64/loaf", - "native_binary_sha256": "bd18f4e82faaaf4a8c559344d69cba18ea7e306b90a7f67db48c1b3efd603666" + "native_binary_sha256": "7f647275ca8b8114d36e524c01eb2198c44535537f6474d20e0e0818aed7437e" } } diff --git a/docs/changes/20260808-hooks-entry-reconciliation/research/codex-0.147.0-isolated-startup-smoke.json b/docs/changes/20260808-hooks-entry-reconciliation/research/codex-0.147.0-isolated-startup-smoke.json index 7ed2ef94..8c299e84 100644 --- a/docs/changes/20260808-hooks-entry-reconciliation/research/codex-0.147.0-isolated-startup-smoke.json +++ b/docs/changes/20260808-hooks-entry-reconciliation/research/codex-0.147.0-isolated-startup-smoke.json @@ -1,6 +1,6 @@ { "evidence_version": 2, - "timestamp": "2026-08-10T02:23:26.762Z", + "timestamp": "2026-08-10T09:02:55.227Z", "target": "codex", "surface": "cli", "version": "0.147.0", @@ -18,6 +18,8 @@ "--dangerously-bypass-hook-trust", "--sandbox", "read-only", + "-m", + "gpt-5.3-codex-spark", "--json", "-C", "", @@ -39,7 +41,7 @@ "stderr": "Reading additional input from stdin...", "model_visible_marker_observed": true, "assistant_marker_match": true, - "marker": "LOAF_CODEX_STARTUP_SMOKE_4354AAEDFA93", + "marker": "LOAF_CODEX_STARTUP_SMOKE_C72AC1E8EE24", "hook_observation": { "event_name": "SessionStart:startup", "native_json": true, @@ -50,6 +52,6 @@ "hooks_path": "dist/codex/.codex/hooks.json", "hooks_sha256": "0f9e3feb7204c3309a7db6a02224ad881f6801a8cdd126ec6222e6d9a804c33d", "native_binary_path": "bin/native/darwin-arm64/loaf", - "native_binary_sha256": "bd18f4e82faaaf4a8c559344d69cba18ea7e306b90a7f67db48c1b3efd603666" + "native_binary_sha256": "7f647275ca8b8114d36e524c01eb2198c44535537f6474d20e0e0818aed7437e" } } diff --git a/docs/changes/20260808-hooks-entry-reconciliation/research/opencode-1.18.13-isolated-request-smoke.json b/docs/changes/20260808-hooks-entry-reconciliation/research/opencode-1.18.13-isolated-request-smoke.json index 61c8be1a..61ca2a40 100644 --- a/docs/changes/20260808-hooks-entry-reconciliation/research/opencode-1.18.13-isolated-request-smoke.json +++ b/docs/changes/20260808-hooks-entry-reconciliation/research/opencode-1.18.13-isolated-request-smoke.json @@ -1,6 +1,6 @@ { "evidence_version": 2, - "timestamp": "2026-08-10T02:23:33.144Z", + "timestamp": "2026-08-10T09:02:03.937Z", "target": "opencode", "surface": "cli", "version": "1.18.13", @@ -39,11 +39,11 @@ "root_session_lookup_proven": true, "no_auth_supplied": true, "cleanup_succeeded": true, - "marker": "LOAF_OPENCODE_REQUEST_SMOKE_78079797C27F", + "marker": "LOAF_OPENCODE_REQUEST_SMOKE_F7F02AFF4F54", "candidate_artifacts": { "hooks_path": "dist/opencode/plugins/hooks.ts", - "hooks_sha256": "bc46b68b592e8b2232001703c3ba4b2bda739992db488a36ec37b14fc77f74f2", + "hooks_sha256": "16fee6f0fbd5e3b55514e8d64f5b4885ffff08823d57339cb968d09c31c60663", "native_binary_path": "bin/native/darwin-arm64/loaf", - "native_binary_sha256": "bd18f4e82faaaf4a8c559344d69cba18ea7e306b90a7f67db48c1b3efd603666" + "native_binary_sha256": "7f647275ca8b8114d36e524c01eb2198c44535537f6474d20e0e0818aed7437e" } } diff --git a/package.json b/package.json index 6cbbe2cb..62881b28 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "loaf", - "version": "0.2.20", + "version": "0.2.21", "description": "Loaf - An Opinionated Agentic Framework for Claude Code, OpenCode, Cursor, Codex, and Amp", "type": "module", "bin": { diff --git a/plugins/loaf/.claude-plugin/plugin.json b/plugins/loaf/.claude-plugin/plugin.json index 6c399495..bbc58511 100644 --- a/plugins/loaf/.claude-plugin/plugin.json +++ b/plugins/loaf/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "loaf", - "version": "0.2.20", + "version": "0.2.21", "description": "Loaf - An Opinionated Agentic Framework", "repository": "https://github.com/levifig/loaf", "license": "MIT" diff --git a/plugins/loaf/.loaf-target-manifest.json b/plugins/loaf/.loaf-target-manifest.json index fbc73c48..a4c17444 100644 --- a/plugins/loaf/.loaf-target-manifest.json +++ b/plugins/loaf/.loaf-target-manifest.json @@ -1,7 +1,7 @@ { "version": 1, "target": "claude-code", - "package_version": "0.2.20", + "package_version": "0.2.21", "capability_contract_version": 3, "adapters": [ "claude-session-start-v1" diff --git a/plugins/loaf/agents/background-runner.md b/plugins/loaf/agents/background-runner.md index c3263e72..7223610f 100644 --- a/plugins/loaf/agents/background-runner.md +++ b/plugins/loaf/agents/background-runner.md @@ -156,4 +156,4 @@ Background Agent ID: bg-20260123-143000-auth-security 4. Log completion to the project journal if the `loaf` CLI is available --- -version: 0.2.20 +version: 0.2.21 diff --git a/plugins/loaf/agents/implementer.md b/plugins/loaf/agents/implementer.md index 64d9a792..5d0588fc 100644 --- a/plugins/loaf/agents/implementer.md +++ b/plugins/loaf/agents/implementer.md @@ -31,4 +31,4 @@ You are an implementer. You have full write access to the codebase: code, tests, - Do not orchestrate other agents — that is the orchestrator's role. --- -version: 0.2.20 +version: 0.2.21 diff --git a/plugins/loaf/agents/librarian.md b/plugins/loaf/agents/librarian.md index 0afd0458..0a67fd28 100644 --- a/plugins/loaf/agents/librarian.md +++ b/plugins/loaf/agents/librarian.md @@ -52,4 +52,4 @@ repository and edit access scoped to `.agents/` only. - Scope all file operations to `.agents/` paths. --- -version: 0.2.20 +version: 0.2.21 diff --git a/plugins/loaf/agents/researcher.md b/plugins/loaf/agents/researcher.md index 1acbe290..2674c346 100644 --- a/plugins/loaf/agents/researcher.md +++ b/plugins/loaf/agents/researcher.md @@ -29,4 +29,4 @@ You are a researcher. You have read access to the codebase and web access to the - Do not orchestrate other agents — that is the orchestrator's role. --- -version: 0.2.20 +version: 0.2.21 diff --git a/plugins/loaf/agents/reviewer.md b/plugins/loaf/agents/reviewer.md index 75004a62..2ddc56f2 100644 --- a/plugins/loaf/agents/reviewer.md +++ b/plugins/loaf/agents/reviewer.md @@ -27,4 +27,4 @@ You are a reviewer. You have read-only access to the codebase. This is not a lim - Do not orchestrate other agents — that is the orchestrator's role. --- -version: 0.2.20 +version: 0.2.21 diff --git a/plugins/loaf/bin/native/darwin-arm64/loaf b/plugins/loaf/bin/native/darwin-arm64/loaf index d801bd2d..e0b6eebf 100755 Binary files a/plugins/loaf/bin/native/darwin-arm64/loaf and b/plugins/loaf/bin/native/darwin-arm64/loaf differ diff --git a/plugins/loaf/package.json b/plugins/loaf/package.json index e8cad9c4..a464e617 100644 --- a/plugins/loaf/package.json +++ b/plugins/loaf/package.json @@ -1,4 +1,4 @@ { "name": "loaf", - "version": "0.2.20" + "version": "0.2.21" } \ No newline at end of file diff --git a/plugins/loaf/skills/architecture/SKILL.md b/plugins/loaf/skills/architecture/SKILL.md index 853ddffc..5aa96581 100644 --- a/plugins/loaf/skills/architecture/SKILL.md +++ b/plugins/loaf/skills/architecture/SKILL.md @@ -14,7 +14,7 @@ description: >- old one. user-invocable: true argument-hint: '[topic or decision]' -version: 0.2.20 +version: 0.2.21 --- # Architecture diff --git a/plugins/loaf/skills/bootstrap/SKILL.md b/plugins/loaf/skills/bootstrap/SKILL.md index fc896152..f79ea6b0 100644 --- a/plugins/loaf/skills/bootstrap/SKILL.md +++ b/plugins/loaf/skills/bootstrap/SKILL.md @@ -10,7 +10,7 @@ description: >- user-invocable: true argument-hint: '[brief or path]' allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep, AskUserQuestion' -version: 0.2.20 +version: 0.2.21 --- # Bootstrap diff --git a/plugins/loaf/skills/brainstorm/SKILL.md b/plugins/loaf/skills/brainstorm/SKILL.md index 1ece4389..7f4f793f 100644 --- a/plugins/loaf/skills/brainstorm/SKILL.md +++ b/plugins/loaf/skills/brainstorm/SKILL.md @@ -10,7 +10,7 @@ description: >- shape). user-invocable: false argument-hint: '[idea or problem]' -version: 0.2.20 +version: 0.2.21 --- # Brainstorm diff --git a/plugins/loaf/skills/breakdown/SKILL.md b/plugins/loaf/skills/breakdown/SKILL.md index 1275a4ae..55ff7d94 100644 --- a/plugins/loaf/skills/breakdown/SKILL.md +++ b/plugins/loaf/skills/breakdown/SKILL.md @@ -7,7 +7,7 @@ description: >- for shaping ideas (use shape) or implementation work (use implement). user-invocable: true argument-hint: '[spec-file or topic]' -version: 0.2.20 +version: 0.2.21 --- # Breakdown diff --git a/plugins/loaf/skills/council/SKILL.md b/plugins/loaf/skills/council/SKILL.md index 1b5e65bc..f2d355c0 100644 --- a/plugins/loaf/skills/council/SKILL.md +++ b/plugins/loaf/skills/council/SKILL.md @@ -9,7 +9,7 @@ description: >- don't need multi-agent deliberation (use architecture). user-invocable: true argument-hint: '[topic]' -version: 0.2.20 +version: 0.2.21 --- # Council diff --git a/plugins/loaf/skills/database-design/SKILL.md b/plugins/loaf/skills/database-design/SKILL.md index fb9a808c..b3f0a6e2 100644 --- a/plugins/loaf/skills/database-design/SKILL.md +++ b/plugins/loaf/skills/database-design/SKILL.md @@ -9,7 +9,7 @@ description: >- (use infrastructure-management). user-invocable: false allowed-tools: 'Read, Write, Edit, Glob, Grep, Bash(psql:*, sqlite3:*, mysql:*)' -version: 0.2.20 +version: 0.2.21 --- # Database Skill diff --git a/plugins/loaf/skills/debugging/SKILL.md b/plugins/loaf/skills/debugging/SKILL.md index 496253ec..9450c375 100644 --- a/plugins/loaf/skills/debugging/SKILL.md +++ b/plugins/loaf/skills/debugging/SKILL.md @@ -9,7 +9,7 @@ description: >- user-invocable: true argument-hint: '[issue or error]' allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # Debugging diff --git a/plugins/loaf/skills/documentation-standards/SKILL.md b/plugins/loaf/skills/documentation-standards/SKILL.md index 4f5cd6c8..ee6a8c17 100644 --- a/plugins/loaf/skills/documentation-standards/SKILL.md +++ b/plugins/loaf/skills/documentation-standards/SKILL.md @@ -8,7 +8,7 @@ description: >- project-specific conventions). user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # Documentation Standards diff --git a/plugins/loaf/skills/explore/SKILL.md b/plugins/loaf/skills/explore/SKILL.md index 83a28101..f612029e 100644 --- a/plugins/loaf/skills/explore/SKILL.md +++ b/plugins/loaf/skills/explore/SKILL.md @@ -14,7 +14,7 @@ description: >- discovery (use pitch), or quick capture (use idea). user-invocable: false argument-hint: '[topic or exploration ref]' -version: 0.2.20 +version: 0.2.21 --- # Explore diff --git a/plugins/loaf/skills/foundations/SKILL.md b/plugins/loaf/skills/foundations/SKILL.md index 727830d1..dd78966f 100644 --- a/plugins/loaf/skills/foundations/SKILL.md +++ b/plugins/loaf/skills/foundations/SKILL.md @@ -8,7 +8,7 @@ description: >- or security audits (use security-compliance). user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # Code Standards diff --git a/plugins/loaf/skills/git-workflow/SKILL.md b/plugins/loaf/skills/git-workflow/SKILL.md index 8d49d0c7..fda19714 100644 --- a/plugins/loaf/skills/git-workflow/SKILL.md +++ b/plugins/loaf/skills/git-workflow/SKILL.md @@ -8,7 +8,7 @@ description: >- infrastructure-management). user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # Git Workflow diff --git a/plugins/loaf/skills/go-development/SKILL.md b/plugins/loaf/skills/go-development/SKILL.md index 4d408427..126cef46 100644 --- a/plugins/loaf/skills/go-development/SKILL.md +++ b/plugins/loaf/skills/go-development/SKILL.md @@ -8,7 +8,7 @@ description: >- infrastructure-management). user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # Go Skill diff --git a/plugins/loaf/skills/handoff/SKILL.md b/plugins/loaf/skills/handoff/SKILL.md index dc4f0ef9..3fee9767 100644 --- a/plugins/loaf/skills/handoff/SKILL.md +++ b/plugins/loaf/skills/handoff/SKILL.md @@ -9,7 +9,7 @@ description: >- artifact that housekeeping deletes after confirmed deprecation. user-invocable: true argument-hint: '[next-session focus]' -version: 0.2.20 +version: 0.2.21 --- # Handoff diff --git a/plugins/loaf/skills/housekeeping/SKILL.md b/plugins/loaf/skills/housekeeping/SKILL.md index 0f663f4c..d221f6d9 100644 --- a/plugins/loaf/skills/housekeeping/SKILL.md +++ b/plugins/loaf/skills/housekeeping/SKILL.md @@ -9,7 +9,7 @@ description: >- knowledge-base). user-invocable: true argument-hint: '[sessions|specs|plans|drafts|handoffs]' -version: 0.2.20 +version: 0.2.21 --- # Housekeeping diff --git a/plugins/loaf/skills/idea/SKILL.md b/plugins/loaf/skills/idea/SKILL.md index 804e7850..2f3aa44c 100644 --- a/plugins/loaf/skills/idea/SKILL.md +++ b/plugins/loaf/skills/idea/SKILL.md @@ -10,7 +10,7 @@ description: >- divergent inquiry when direction is undecided (use explore as a technique). user-invocable: true argument-hint: '[idea description]' -version: 0.2.20 +version: 0.2.21 --- # Idea diff --git a/plugins/loaf/skills/implement/SKILL.md b/plugins/loaf/skills/implement/SKILL.md index a81ac755..e4e45bf0 100644 --- a/plugins/loaf/skills/implement/SKILL.md +++ b/plugins/loaf/skills/implement/SKILL.md @@ -9,7 +9,7 @@ description: >- research, or review. user-invocable: true argument-hint: '[TASK-XXX | SPEC-XXX | TASK-XXX..YYY | TASK-XXX,YYY | description]' -version: 0.2.20 +version: 0.2.21 --- # Implement diff --git a/plugins/loaf/skills/infrastructure-management/SKILL.md b/plugins/loaf/skills/infrastructure-management/SKILL.md index 980563b5..aa61af03 100644 --- a/plugins/loaf/skills/infrastructure-management/SKILL.md +++ b/plugins/loaf/skills/infrastructure-management/SKILL.md @@ -8,7 +8,7 @@ description: >- database-design), or security audits (use security-compliance). user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # Infrastructure diff --git a/plugins/loaf/skills/interface-design/SKILL.md b/plugins/loaf/skills/interface-design/SKILL.md index d379c0f6..0c437989 100644 --- a/plugins/loaf/skills/interface-design/SKILL.md +++ b/plugins/loaf/skills/interface-design/SKILL.md @@ -8,7 +8,7 @@ description: >- skills). user-invocable: false allowed-tools: 'Read, Write, Edit, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # Design Principles diff --git a/plugins/loaf/skills/knowledge-base/SKILL.md b/plugins/loaf/skills/knowledge-base/SKILL.md index 7a56af5a..5f97edc1 100644 --- a/plugins/loaf/skills/knowledge-base/SKILL.md +++ b/plugins/loaf/skills/knowledge-base/SKILL.md @@ -8,7 +8,7 @@ description: >- AGENTS.md). user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # Knowledge Base diff --git a/plugins/loaf/skills/loaf-reference/SKILL.md b/plugins/loaf/skills/loaf-reference/SKILL.md index bf29efc1..53f1b357 100644 --- a/plugins/loaf/skills/loaf-reference/SKILL.md +++ b/plugins/loaf/skills/loaf-reference/SKILL.md @@ -8,7 +8,7 @@ description: >- current. Not for workflow guidance (workflow skills own their CLI contracts) or build internals. user-invocable: false -version: 0.2.20 +version: 0.2.21 --- # Loaf Reference diff --git a/plugins/loaf/skills/orchestration/SKILL.md b/plugins/loaf/skills/orchestration/SKILL.md index 12af164d..8c4648ac 100644 --- a/plugins/loaf/skills/orchestration/SKILL.md +++ b/plugins/loaf/skills/orchestration/SKILL.md @@ -7,7 +7,7 @@ description: >- implementation (use direct tool delegation) or solo research (use research). user-invocable: false allowed-tools: 'Read, Write, Edit, Glob, Grep, TodoWrite, TodoRead' -version: 0.2.20 +version: 0.2.21 --- # Orchestration diff --git a/plugins/loaf/skills/pitch/SKILL.md b/plugins/loaf/skills/pitch/SKILL.md index af014b78..766418c5 100644 --- a/plugins/loaf/skills/pitch/SKILL.md +++ b/plugins/loaf/skills/pitch/SKILL.md @@ -14,7 +14,7 @@ user-invocable: true disable-model-invocation: true argument-hint: '[idea, problem, or intake item]' allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep, AskUserQuestion' -version: 0.2.20 +version: 0.2.21 --- # Pitch diff --git a/plugins/loaf/skills/power-systems-modeling/SKILL.md b/plugins/loaf/skills/power-systems-modeling/SKILL.md index fd2d9162..39c19ff8 100644 --- a/plugins/loaf/skills/power-systems-modeling/SKILL.md +++ b/plugins/loaf/skills/power-systems-modeling/SKILL.md @@ -8,7 +8,7 @@ description: >- architecture. user-invocable: false allowed-tools: 'Read, Write, Edit, Glob, Grep, Bash(python:*), Bash(*.sh)' -version: 0.2.20 +version: 0.2.21 --- # Power Systems Reference diff --git a/plugins/loaf/skills/python-development/SKILL.md b/plugins/loaf/skills/python-development/SKILL.md index 533f5faa..1cb28a0a 100644 --- a/plugins/loaf/skills/python-development/SKILL.md +++ b/plugins/loaf/skills/python-development/SKILL.md @@ -8,7 +8,7 @@ description: >- infrastructure-management), or frontend code (use typescript-development). user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # Python Development diff --git a/plugins/loaf/skills/refactor-deepen/SKILL.md b/plugins/loaf/skills/refactor-deepen/SKILL.md index 69df463c..5a986ad8 100644 --- a/plugins/loaf/skills/refactor-deepen/SKILL.md +++ b/plugins/loaf/skills/refactor-deepen/SKILL.md @@ -9,7 +9,7 @@ description: >- with candidates, dependency categories, and proposed deepened modules. user-invocable: true argument-hint: '[module or area]' -version: 0.2.20 +version: 0.2.21 --- # Refactor-Deepen diff --git a/plugins/loaf/skills/reflect/SKILL.md b/plugins/loaf/skills/reflect/SKILL.md index c6d49b9a..e6c06e32 100644 --- a/plugins/loaf/skills/reflect/SKILL.md +++ b/plugins/loaf/skills/reflect/SKILL.md @@ -8,7 +8,7 @@ description: >- architecture). user-invocable: true argument-hint: '[SPEC-ID or topic]' -version: 0.2.20 +version: 0.2.21 --- # Reflect diff --git a/plugins/loaf/skills/release/SKILL.md b/plugins/loaf/skills/release/SKILL.md index 1fd4f1fe..fdffa0ef 100644 --- a/plugins/loaf/skills/release/SKILL.md +++ b/plugins/loaf/skills/release/SKILL.md @@ -9,7 +9,7 @@ description: >- ship). user-invocable: true argument-hint: '[version, base, or release intent]' -version: 0.2.20 +version: 0.2.21 --- # Release diff --git a/plugins/loaf/skills/research/SKILL.md b/plugins/loaf/skills/research/SKILL.md index fc1548ac..7b2e02e9 100644 --- a/plugins/loaf/skills/research/SKILL.md +++ b/plugins/loaf/skills/research/SKILL.md @@ -8,7 +8,7 @@ description: >- pitch), multi-agent coordination (use orchestration), or implementation. user-invocable: true argument-hint: '[topic]' -version: 0.2.20 +version: 0.2.21 --- # Research diff --git a/plugins/loaf/skills/ruby-development/SKILL.md b/plugins/loaf/skills/ruby-development/SKILL.md index f7cf89b7..3e787a65 100644 --- a/plugins/loaf/skills/ruby-development/SKILL.md +++ b/plugins/loaf/skills/ruby-development/SKILL.md @@ -8,7 +8,7 @@ description: >- typescript-development). user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # Ruby Development diff --git a/plugins/loaf/skills/security-compliance/SKILL.md b/plugins/loaf/skills/security-compliance/SKILL.md index 07250741..e8ed6652 100644 --- a/plugins/loaf/skills/security-compliance/SKILL.md +++ b/plugins/loaf/skills/security-compliance/SKILL.md @@ -7,7 +7,7 @@ description: >- (use debugging) or general code review (use foundations). user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # Security & Compliance diff --git a/plugins/loaf/skills/shape/SKILL.md b/plugins/loaf/skills/shape/SKILL.md index 9433c843..ebc85549 100644 --- a/plugins/loaf/skills/shape/SKILL.md +++ b/plugins/loaf/skills/shape/SKILL.md @@ -16,7 +16,7 @@ description: >- entry intent routes to pitch). user-invocable: true argument-hint: '[messy input to shape into a Change]' -version: 0.2.20 +version: 0.2.21 --- # Shape diff --git a/plugins/loaf/skills/ship/SKILL.md b/plugins/loaf/skills/ship/SKILL.md index 412a62e5..39aae312 100644 --- a/plugins/loaf/skills/ship/SKILL.md +++ b/plugins/loaf/skills/ship/SKILL.md @@ -8,7 +8,7 @@ description: >- (use release). user-invocable: true argument-hint: '[PR number or URL]' -version: 0.2.20 +version: 0.2.21 --- # Ship diff --git a/plugins/loaf/skills/strategy/SKILL.md b/plugins/loaf/skills/strategy/SKILL.md index cb505190..0c77c81a 100644 --- a/plugins/loaf/skills/strategy/SKILL.md +++ b/plugins/loaf/skills/strategy/SKILL.md @@ -8,7 +8,7 @@ description: >- reflect). user-invocable: true argument-hint: '[topic]' -version: 0.2.20 +version: 0.2.21 --- # Strategy diff --git a/plugins/loaf/skills/triage/SKILL.md b/plugins/loaf/skills/triage/SKILL.md index 03d657a5..25bcdec6 100644 --- a/plugins/loaf/skills/triage/SKILL.md +++ b/plugins/loaf/skills/triage/SKILL.md @@ -10,7 +10,7 @@ description: >- show or journal directly), capturing new ideas (use idea), problem discovery (use pitch), or bounding one chosen direction (use shape). user-invocable: true -version: 0.2.20 +version: 0.2.21 --- # Triage diff --git a/plugins/loaf/skills/typescript-development/SKILL.md b/plugins/loaf/skills/typescript-development/SKILL.md index 5f63f8fe..069b54fa 100644 --- a/plugins/loaf/skills/typescript-development/SKILL.md +++ b/plugins/loaf/skills/typescript-development/SKILL.md @@ -7,7 +7,7 @@ description: >- database schema (use database-design), or Python (use python-development). user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 0.2.20 +version: 0.2.21 --- # TypeScript Development diff --git a/plugins/loaf/skills/wrap/SKILL.md b/plugins/loaf/skills/wrap/SKILL.md index 0573e3c8..9e119f62 100644 --- a/plugins/loaf/skills/wrap/SKILL.md +++ b/plugins/loaf/skills/wrap/SKILL.md @@ -8,7 +8,7 @@ description: >- housekeeping) or capturing ideas (use idea). Produces a Session Wrap-Up summary and an optional wrap journal entry. user-invocable: true -version: 0.2.20 +version: 0.2.21 --- # Wrap