diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index f1466e2e7..f1b17f6b8 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -6,14 +6,14 @@ }, "metadata": { "description": "Loaf - An Opinionated Agentic Framework", - "version": "2.0.0-alpha.13" + "version": "2.0.0-alpha.14" }, "plugins": [ { "name": "loaf", "description": "Loaf - An Opinionated Agentic Framework", "source": "./plugins/loaf", - "version": "2.0.0-alpha.13", + "version": "2.0.0-alpha.14", "license": "MIT", "repository": "https://github.com/levifig/loaf" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c7a8d750..d60a81f89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,20 @@ is a Loaf workflow staging section for curated entries before release. ## [Unreleased] +- _No unreleased changes yet._ + +## [2.0.0-alpha.14] - 2026-07-25 + +### Added + +- `loaf check --hook artifact-names` rejects artifact filenames that name the work unit which produced them. A Change, spec, task, or issue points at its artifacts; an artifact never points back, because the directory containing it already records that provenance, and a name carrying a work identity has to be renamed to stay true. The check runs fail-closed at commit time, judges tracked files only, matches Loaf's artifact directories by basename so relocating them needs no configuration, and grandfathers anything whose front matter records a terminal state (`final`, `archived`, `done`, or `completed`) at any nesting depth. Versions and timestamps remain legal because they identify rather than refer, as does a numbered record living in the directory that owns it, such as `SPEC-042` in `specs/` or `ADR-007` in `docs/decisions/`. **After upgrading, a commit that touches an artifact whose name carries a work identity fails until the file is renamed.** Run `loaf check --hook artifact-names --advisory` to list findings without blocking; record the provenance in a front matter field instead, where it stays readable and updatable. + ### Changed - Managed `AGENTS.md` fence markers are fingerprint-only (`sha256=` of the body, no installer version stamp), so `loaf install --upgrade` no longer rewrites the marker on every release when the body is unchanged. The first upgrade after this change strips the legacy `v…` stamp once; a pre-change binary that encounters the new header refuses with a malformed-fingerprint error until you upgrade the binary. +- Capability smoke runners require an explicit client executable, expected version, and receipt path, and publish a receipt only after both the proof and its cleanup succeed. Each runner is named for the target and context mode it verifies rather than for the workstream that commissioned it, its retained evidence follows the same rule, and marker prefixes are target-scoped so one target's proof cannot be presented as another's. Scripted callers must pass `--client`, `--expected-version`, and `--receipt`. +- Living project documentation and distributed skill guidance describe Change-first work in permanent language, without implementation-unit names, numbered development stages, or volatile inventory counts that go stale the moment anything is added. Historical Change, SPEC, and ADR citations remain where they serve as decision provenance. +- The `ship` skill handles pull requests stacked on the one being landed. It detects child pull requests before the merge, refuses to delete a head branch while a child still points at it, and afterwards retargets, rebases, and re-verifies each child. Neither repair is optional: GitHub does not reliably retarget a child when its base merges, and a squash merge leaves the child carrying commits that would re-apply its parent's entire diff. ## [2.0.0-alpha.13] - 2026-07-24 diff --git a/dist/amp/.amp/plugins/loaf.ts b/dist/amp/.amp/plugins/loaf.ts index cef5a419a..27d12c3a8 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 2.0.0-alpha.13 + * @version 2.0.0-alpha.14 */ import type { PluginAPI } from '@ampcode/plugin'; diff --git a/dist/amp/.loaf-target-manifest.json b/dist/amp/.loaf-target-manifest.json index 4be83d890..ad391261e 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": "2.0.0-alpha.13", + "package_version": "2.0.0-alpha.14", "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": "3aca4420a45c57928cb4484bb3793ba519b8ff87ff10c6475829a84db1cdac5e", + "sha256": "ca3e112fb08144f458993e0c6f22e8cd65a8aa45c9ace4dd3de4da1eaacd8e52", "mode": 420 } ] diff --git a/dist/amp/skills/architecture/SKILL.md b/dist/amp/skills/architecture/SKILL.md index b21c3f00e..d39ec421b 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Architecture diff --git a/dist/amp/skills/bootstrap/SKILL.md b/dist/amp/skills/bootstrap/SKILL.md index 42d37452a..746c65f59 100644 --- a/dist/amp/skills/bootstrap/SKILL.md +++ b/dist/amp/skills/bootstrap/SKILL.md @@ -6,7 +6,7 @@ description: >- I start a new project?", "set up Loaf," or "bootstrap my project." Produces populated project documents and setup recommendations. Not for shaping features (use shape) or brainstorming ideas (use brainstorm). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Bootstrap diff --git a/dist/amp/skills/brainstorm/SKILL.md b/dist/amp/skills/brainstorm/SKILL.md index d20a71b7c..c75dddf5c 100644 --- a/dist/amp/skills/brainstorm/SKILL.md +++ b/dist/amp/skills/brainstorm/SKILL.md @@ -6,7 +6,7 @@ description: >- capture. Explore owns the user-facing inquiry lifecycle; reference this technique from it. Not a primary entry point — route "explore this" or "help me think through options" to explore. -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Brainstorm diff --git a/dist/amp/skills/breakdown/SKILL.md b/dist/amp/skills/breakdown/SKILL.md index 90b40fc52..6809fe5d6 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Breakdown diff --git a/dist/amp/skills/council/SKILL.md b/dist/amp/skills/council/SKILL.md index e0b29f8f2..4fddff194 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Council diff --git a/dist/amp/skills/database-design/SKILL.md b/dist/amp/skills/database-design/SKILL.md index b7d900b8c..7bb7ceab4 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Database Skill diff --git a/dist/amp/skills/debugging/SKILL.md b/dist/amp/skills/debugging/SKILL.md index 6f2c85dcf..ce968cbdb 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Debugging diff --git a/dist/amp/skills/documentation-standards/SKILL.md b/dist/amp/skills/documentation-standards/SKILL.md index beddcb05d..43ab9dbde 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Documentation Standards diff --git a/dist/amp/skills/explore/SKILL.md b/dist/amp/skills/explore/SKILL.md index 1435f4d1b..e6c072af3 100644 --- a/dist/amp/skills/explore/SKILL.md +++ b/dist/amp/skills/explore/SKILL.md @@ -10,7 +10,7 @@ description: >- research), continuing implementation or delivery work (use implement), processing the intake queue (use triage), shaping a bounded Change (use shape), or quick capture (use idea). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Explore diff --git a/dist/amp/skills/foundations/SKILL.md b/dist/amp/skills/foundations/SKILL.md index 4c0d3bdbd..d55d61bdf 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Code Standards diff --git a/dist/amp/skills/git-workflow/SKILL.md b/dist/amp/skills/git-workflow/SKILL.md index abdef0e71..6f5a095e1 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Git Workflow diff --git a/dist/amp/skills/go-development/SKILL.md b/dist/amp/skills/go-development/SKILL.md index 180c15fb6..fd7a44376 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Go Skill diff --git a/dist/amp/skills/handoff/SKILL.md b/dist/amp/skills/handoff/SKILL.md index 671e52e04..593ca09ad 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Handoff diff --git a/dist/amp/skills/housekeeping/SKILL.md b/dist/amp/skills/housekeeping/SKILL.md index ca0ebb341..23fcc6f72 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Housekeeping diff --git a/dist/amp/skills/idea/SKILL.md b/dist/amp/skills/idea/SKILL.md index 3a762155c..2ab955d13 100644 --- a/dist/amp/skills/idea/SKILL.md +++ b/dist/amp/skills/idea/SKILL.md @@ -7,7 +7,7 @@ description: >- capture primitives routed through triage, which chooses dispositions such as tracking an Intent. Not for divergent inquiry (use explore), processing the intake queue (use triage), or shaping (use shape). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Idea diff --git a/dist/amp/skills/implement/SKILL.md b/dist/amp/skills/implement/SKILL.md index a07b4d110..ac34a32a5 100644 --- a/dist/amp/skills/implement/SKILL.md +++ b/dist/amp/skills/implement/SKILL.md @@ -6,7 +6,7 @@ description: >- changes. 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Implement diff --git a/dist/amp/skills/infrastructure-management/SKILL.md b/dist/amp/skills/infrastructure-management/SKILL.md index 6a97f4b51..1f5fe2069 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Infrastructure diff --git a/dist/amp/skills/interface-design/SKILL.md b/dist/amp/skills/interface-design/SKILL.md index 16075da30..b1d81b5f3 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Design Principles diff --git a/dist/amp/skills/knowledge-base/SKILL.md b/dist/amp/skills/knowledge-base/SKILL.md index c3f1d701f..4dddfda23 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Knowledge Base diff --git a/dist/amp/skills/loaf-reference/SKILL.md b/dist/amp/skills/loaf-reference/SKILL.md index 526ddcbeb..571ee8fec 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Loaf Reference diff --git a/dist/amp/skills/orchestration/SKILL.md b/dist/amp/skills/orchestration/SKILL.md index 25ad69891..c5bcdc74b 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Orchestration diff --git a/dist/amp/skills/power-systems-modeling/SKILL.md b/dist/amp/skills/power-systems-modeling/SKILL.md index 8c38c2c91..4e46007f8 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Power Systems Reference diff --git a/dist/amp/skills/python-development/SKILL.md b/dist/amp/skills/python-development/SKILL.md index 951f6035f..6164e87c9 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Python Development diff --git a/dist/amp/skills/refactor-deepen/SKILL.md b/dist/amp/skills/refactor-deepen/SKILL.md index e1d120b94..987a91e7d 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Refactor-Deepen diff --git a/dist/amp/skills/reflect/SKILL.md b/dist/amp/skills/reflect/SKILL.md index 7903bba14..fde088f8e 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Reflect diff --git a/dist/amp/skills/release/SKILL.md b/dist/amp/skills/release/SKILL.md index 87870bd32..aa50367e4 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Release diff --git a/dist/amp/skills/research/SKILL.md b/dist/amp/skills/research/SKILL.md index 1eff44a20..c7ad9127b 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 multi-agent coordination (use orchestration) or implementation. -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Research diff --git a/dist/amp/skills/ruby-development/SKILL.md b/dist/amp/skills/ruby-development/SKILL.md index f977bc633..9552b8021 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Ruby Development diff --git a/dist/amp/skills/security-compliance/SKILL.md b/dist/amp/skills/security-compliance/SKILL.md index f92ba7f15..468fda0c9 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Security & Compliance diff --git a/dist/amp/skills/shape/SKILL.md b/dist/amp/skills/shape/SKILL.md index 56e2456b0..22001ff01 100644 --- a/dist/amp/skills/shape/SKILL.md +++ b/dist/amp/skills/shape/SKILL.md @@ -12,7 +12,7 @@ description: >- conversations, and plain conversation as input. Produces a Change, never a numbered spec or task file. Not for quick capture (use idea) or open-ended divergent thinking before scope exists (use brainstorm). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Shape diff --git a/dist/amp/skills/ship/SKILL.md b/dist/amp/skills/ship/SKILL.md index cf7a70788..c788aaa92 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Ship diff --git a/dist/amp/skills/strategy/SKILL.md b/dist/amp/skills/strategy/SKILL.md index 20eacb7c3..63dcaea68 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Strategy diff --git a/dist/amp/skills/triage/SKILL.md b/dist/amp/skills/triage/SKILL.md index ca5713c45..a41259faa 100644 --- a/dist/amp/skills/triage/SKILL.md +++ b/dist/amp/skills/triage/SKILL.md @@ -9,7 +9,7 @@ description: >- shape. Not for reading a single known item (use loaf intent show or journal directly), capturing new ideas (use idea), divergent inquiry (use explore), or bounding one chosen direction (use shape). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Triage diff --git a/dist/amp/skills/typescript-development/SKILL.md b/dist/amp/skills/typescript-development/SKILL.md index 184ab44d7..74f1064b0 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # TypeScript Development diff --git a/dist/amp/skills/wrap/SKILL.md b/dist/amp/skills/wrap/SKILL.md index ea1e7f722..18fd760d2 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Wrap diff --git a/dist/codex/.loaf-target-manifest.json b/dist/codex/.loaf-target-manifest.json index f3b33116a..7ff8500a3 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": "2.0.0-alpha.13", + "package_version": "2.0.0-alpha.14", "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 b21c3f00e..d39ec421b 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Architecture diff --git a/dist/codex/skills/bootstrap/SKILL.md b/dist/codex/skills/bootstrap/SKILL.md index f31c58d4c..fc42dfa90 100644 --- a/dist/codex/skills/bootstrap/SKILL.md +++ b/dist/codex/skills/bootstrap/SKILL.md @@ -6,7 +6,7 @@ description: >- I start a new project?", "set up Loaf," or "bootstrap my project." Produces populated project documents and setup recommendations. Not for shaping features (use shape) or brainstorming ideas (use brainstorm). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Bootstrap diff --git a/dist/codex/skills/brainstorm/SKILL.md b/dist/codex/skills/brainstorm/SKILL.md index d20a71b7c..c75dddf5c 100644 --- a/dist/codex/skills/brainstorm/SKILL.md +++ b/dist/codex/skills/brainstorm/SKILL.md @@ -6,7 +6,7 @@ description: >- capture. Explore owns the user-facing inquiry lifecycle; reference this technique from it. Not a primary entry point — route "explore this" or "help me think through options" to explore. -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Brainstorm diff --git a/dist/codex/skills/breakdown/SKILL.md b/dist/codex/skills/breakdown/SKILL.md index 90b40fc52..6809fe5d6 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Breakdown diff --git a/dist/codex/skills/council/SKILL.md b/dist/codex/skills/council/SKILL.md index 47f62c064..711b05a80 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Council diff --git a/dist/codex/skills/database-design/SKILL.md b/dist/codex/skills/database-design/SKILL.md index b7d900b8c..7bb7ceab4 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Database Skill diff --git a/dist/codex/skills/debugging/SKILL.md b/dist/codex/skills/debugging/SKILL.md index 6f2c85dcf..ce968cbdb 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Debugging diff --git a/dist/codex/skills/documentation-standards/SKILL.md b/dist/codex/skills/documentation-standards/SKILL.md index beddcb05d..43ab9dbde 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Documentation Standards diff --git a/dist/codex/skills/explore/SKILL.md b/dist/codex/skills/explore/SKILL.md index 1435f4d1b..e6c072af3 100644 --- a/dist/codex/skills/explore/SKILL.md +++ b/dist/codex/skills/explore/SKILL.md @@ -10,7 +10,7 @@ description: >- research), continuing implementation or delivery work (use implement), processing the intake queue (use triage), shaping a bounded Change (use shape), or quick capture (use idea). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Explore diff --git a/dist/codex/skills/foundations/SKILL.md b/dist/codex/skills/foundations/SKILL.md index 4c0d3bdbd..d55d61bdf 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Code Standards diff --git a/dist/codex/skills/git-workflow/SKILL.md b/dist/codex/skills/git-workflow/SKILL.md index abdef0e71..6f5a095e1 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Git Workflow diff --git a/dist/codex/skills/go-development/SKILL.md b/dist/codex/skills/go-development/SKILL.md index 180c15fb6..fd7a44376 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Go Skill diff --git a/dist/codex/skills/handoff/SKILL.md b/dist/codex/skills/handoff/SKILL.md index 671e52e04..593ca09ad 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Handoff diff --git a/dist/codex/skills/housekeeping/SKILL.md b/dist/codex/skills/housekeeping/SKILL.md index 71790eee2..dfe529f98 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Housekeeping diff --git a/dist/codex/skills/idea/SKILL.md b/dist/codex/skills/idea/SKILL.md index 3a762155c..2ab955d13 100644 --- a/dist/codex/skills/idea/SKILL.md +++ b/dist/codex/skills/idea/SKILL.md @@ -7,7 +7,7 @@ description: >- capture primitives routed through triage, which chooses dispositions such as tracking an Intent. Not for divergent inquiry (use explore), processing the intake queue (use triage), or shaping (use shape). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Idea diff --git a/dist/codex/skills/implement/SKILL.md b/dist/codex/skills/implement/SKILL.md index eb6164c98..b0bb9d4b0 100644 --- a/dist/codex/skills/implement/SKILL.md +++ b/dist/codex/skills/implement/SKILL.md @@ -6,7 +6,7 @@ description: >- changes. 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Implement diff --git a/dist/codex/skills/infrastructure-management/SKILL.md b/dist/codex/skills/infrastructure-management/SKILL.md index 6a97f4b51..1f5fe2069 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Infrastructure diff --git a/dist/codex/skills/interface-design/SKILL.md b/dist/codex/skills/interface-design/SKILL.md index 16075da30..b1d81b5f3 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Design Principles diff --git a/dist/codex/skills/knowledge-base/SKILL.md b/dist/codex/skills/knowledge-base/SKILL.md index c3f1d701f..4dddfda23 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Knowledge Base diff --git a/dist/codex/skills/loaf-reference/SKILL.md b/dist/codex/skills/loaf-reference/SKILL.md index 526ddcbeb..571ee8fec 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Loaf Reference diff --git a/dist/codex/skills/orchestration/SKILL.md b/dist/codex/skills/orchestration/SKILL.md index 9bf4a84ca..d9ab68626 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Orchestration diff --git a/dist/codex/skills/power-systems-modeling/SKILL.md b/dist/codex/skills/power-systems-modeling/SKILL.md index 8c38c2c91..4e46007f8 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Power Systems Reference diff --git a/dist/codex/skills/python-development/SKILL.md b/dist/codex/skills/python-development/SKILL.md index 951f6035f..6164e87c9 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Python Development diff --git a/dist/codex/skills/refactor-deepen/SKILL.md b/dist/codex/skills/refactor-deepen/SKILL.md index e1d120b94..987a91e7d 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Refactor-Deepen diff --git a/dist/codex/skills/reflect/SKILL.md b/dist/codex/skills/reflect/SKILL.md index 7903bba14..fde088f8e 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Reflect diff --git a/dist/codex/skills/release/SKILL.md b/dist/codex/skills/release/SKILL.md index b0575b4ec..281ea0098 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Release diff --git a/dist/codex/skills/research/SKILL.md b/dist/codex/skills/research/SKILL.md index 8915b8634..6410f9960 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 multi-agent coordination (use orchestration) or implementation. -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Research diff --git a/dist/codex/skills/ruby-development/SKILL.md b/dist/codex/skills/ruby-development/SKILL.md index f977bc633..9552b8021 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Ruby Development diff --git a/dist/codex/skills/security-compliance/SKILL.md b/dist/codex/skills/security-compliance/SKILL.md index f92ba7f15..468fda0c9 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Security & Compliance diff --git a/dist/codex/skills/shape/SKILL.md b/dist/codex/skills/shape/SKILL.md index f6da9a59f..a6855affe 100644 --- a/dist/codex/skills/shape/SKILL.md +++ b/dist/codex/skills/shape/SKILL.md @@ -12,7 +12,7 @@ description: >- conversations, and plain conversation as input. Produces a Change, never a numbered spec or task file. Not for quick capture (use idea) or open-ended divergent thinking before scope exists (use brainstorm). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Shape diff --git a/dist/codex/skills/ship/SKILL.md b/dist/codex/skills/ship/SKILL.md index cf7a70788..c788aaa92 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Ship diff --git a/dist/codex/skills/strategy/SKILL.md b/dist/codex/skills/strategy/SKILL.md index 6113301b9..b62795e53 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Strategy diff --git a/dist/codex/skills/triage/SKILL.md b/dist/codex/skills/triage/SKILL.md index ca5713c45..a41259faa 100644 --- a/dist/codex/skills/triage/SKILL.md +++ b/dist/codex/skills/triage/SKILL.md @@ -9,7 +9,7 @@ description: >- shape. Not for reading a single known item (use loaf intent show or journal directly), capturing new ideas (use idea), divergent inquiry (use explore), or bounding one chosen direction (use shape). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Triage diff --git a/dist/codex/skills/typescript-development/SKILL.md b/dist/codex/skills/typescript-development/SKILL.md index 184ab44d7..74f1064b0 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # TypeScript Development diff --git a/dist/codex/skills/wrap/SKILL.md b/dist/codex/skills/wrap/SKILL.md index 45345c0e5..71746d8f7 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Wrap diff --git a/dist/cursor/.loaf-target-manifest.json b/dist/cursor/.loaf-target-manifest.json index 6358f0ac7..427f3bab4 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": "2.0.0-alpha.13", + "package_version": "2.0.0-alpha.14", "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 359f24a4f..eada33df1 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/dist/cursor/agents/implementer.md b/dist/cursor/agents/implementer.md index c76602dc9..1de98ff39 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/dist/cursor/agents/librarian.md b/dist/cursor/agents/librarian.md index b53e23cde..32657fd11 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/dist/cursor/agents/researcher.md b/dist/cursor/agents/researcher.md index 275465574..396306d4e 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/dist/cursor/agents/reviewer.md b/dist/cursor/agents/reviewer.md index 5fe47de29..72f8267df 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/dist/cursor/skills/architecture/SKILL.md b/dist/cursor/skills/architecture/SKILL.md index b21c3f00e..d39ec421b 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Architecture diff --git a/dist/cursor/skills/bootstrap/SKILL.md b/dist/cursor/skills/bootstrap/SKILL.md index af59308f2..9db796d59 100644 --- a/dist/cursor/skills/bootstrap/SKILL.md +++ b/dist/cursor/skills/bootstrap/SKILL.md @@ -6,7 +6,7 @@ description: >- I start a new project?", "set up Loaf," or "bootstrap my project." Produces populated project documents and setup recommendations. Not for shaping features (use shape) or brainstorming ideas (use brainstorm). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Bootstrap diff --git a/dist/cursor/skills/brainstorm/SKILL.md b/dist/cursor/skills/brainstorm/SKILL.md index d20a71b7c..c75dddf5c 100644 --- a/dist/cursor/skills/brainstorm/SKILL.md +++ b/dist/cursor/skills/brainstorm/SKILL.md @@ -6,7 +6,7 @@ description: >- capture. Explore owns the user-facing inquiry lifecycle; reference this technique from it. Not a primary entry point — route "explore this" or "help me think through options" to explore. -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Brainstorm diff --git a/dist/cursor/skills/breakdown/SKILL.md b/dist/cursor/skills/breakdown/SKILL.md index 90b40fc52..6809fe5d6 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Breakdown diff --git a/dist/cursor/skills/council/SKILL.md b/dist/cursor/skills/council/SKILL.md index 7e5b9f64e..72f274418 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Council diff --git a/dist/cursor/skills/database-design/SKILL.md b/dist/cursor/skills/database-design/SKILL.md index b7d900b8c..7bb7ceab4 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Database Skill diff --git a/dist/cursor/skills/debugging/SKILL.md b/dist/cursor/skills/debugging/SKILL.md index 6f2c85dcf..ce968cbdb 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Debugging diff --git a/dist/cursor/skills/documentation-standards/SKILL.md b/dist/cursor/skills/documentation-standards/SKILL.md index beddcb05d..43ab9dbde 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Documentation Standards diff --git a/dist/cursor/skills/explore/SKILL.md b/dist/cursor/skills/explore/SKILL.md index 1435f4d1b..e6c072af3 100644 --- a/dist/cursor/skills/explore/SKILL.md +++ b/dist/cursor/skills/explore/SKILL.md @@ -10,7 +10,7 @@ description: >- research), continuing implementation or delivery work (use implement), processing the intake queue (use triage), shaping a bounded Change (use shape), or quick capture (use idea). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Explore diff --git a/dist/cursor/skills/foundations/SKILL.md b/dist/cursor/skills/foundations/SKILL.md index 4c0d3bdbd..d55d61bdf 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Code Standards diff --git a/dist/cursor/skills/git-workflow/SKILL.md b/dist/cursor/skills/git-workflow/SKILL.md index abdef0e71..6f5a095e1 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Git Workflow diff --git a/dist/cursor/skills/go-development/SKILL.md b/dist/cursor/skills/go-development/SKILL.md index 180c15fb6..fd7a44376 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Go Skill diff --git a/dist/cursor/skills/handoff/SKILL.md b/dist/cursor/skills/handoff/SKILL.md index 671e52e04..593ca09ad 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Handoff diff --git a/dist/cursor/skills/housekeeping/SKILL.md b/dist/cursor/skills/housekeeping/SKILL.md index 0f5cdde66..b2b5fbdc0 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Housekeeping diff --git a/dist/cursor/skills/idea/SKILL.md b/dist/cursor/skills/idea/SKILL.md index 3a762155c..2ab955d13 100644 --- a/dist/cursor/skills/idea/SKILL.md +++ b/dist/cursor/skills/idea/SKILL.md @@ -7,7 +7,7 @@ description: >- capture primitives routed through triage, which chooses dispositions such as tracking an Intent. Not for divergent inquiry (use explore), processing the intake queue (use triage), or shaping (use shape). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Idea diff --git a/dist/cursor/skills/implement/SKILL.md b/dist/cursor/skills/implement/SKILL.md index ab06ea660..e35f0a113 100644 --- a/dist/cursor/skills/implement/SKILL.md +++ b/dist/cursor/skills/implement/SKILL.md @@ -6,7 +6,7 @@ description: >- changes. 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Implement diff --git a/dist/cursor/skills/infrastructure-management/SKILL.md b/dist/cursor/skills/infrastructure-management/SKILL.md index 6a97f4b51..1f5fe2069 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Infrastructure diff --git a/dist/cursor/skills/interface-design/SKILL.md b/dist/cursor/skills/interface-design/SKILL.md index 16075da30..b1d81b5f3 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Design Principles diff --git a/dist/cursor/skills/knowledge-base/SKILL.md b/dist/cursor/skills/knowledge-base/SKILL.md index c3f1d701f..4dddfda23 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Knowledge Base diff --git a/dist/cursor/skills/loaf-reference/SKILL.md b/dist/cursor/skills/loaf-reference/SKILL.md index 526ddcbeb..571ee8fec 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Loaf Reference diff --git a/dist/cursor/skills/orchestration/SKILL.md b/dist/cursor/skills/orchestration/SKILL.md index e3266ae17..bcec4b3af 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Orchestration diff --git a/dist/cursor/skills/power-systems-modeling/SKILL.md b/dist/cursor/skills/power-systems-modeling/SKILL.md index 8c38c2c91..4e46007f8 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Power Systems Reference diff --git a/dist/cursor/skills/python-development/SKILL.md b/dist/cursor/skills/python-development/SKILL.md index 951f6035f..6164e87c9 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Python Development diff --git a/dist/cursor/skills/refactor-deepen/SKILL.md b/dist/cursor/skills/refactor-deepen/SKILL.md index e1d120b94..987a91e7d 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Refactor-Deepen diff --git a/dist/cursor/skills/reflect/SKILL.md b/dist/cursor/skills/reflect/SKILL.md index 7903bba14..fde088f8e 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Reflect diff --git a/dist/cursor/skills/release/SKILL.md b/dist/cursor/skills/release/SKILL.md index 8e9444a5d..4fe7aeea8 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Release diff --git a/dist/cursor/skills/research/SKILL.md b/dist/cursor/skills/research/SKILL.md index 346c6ca94..8f4e19123 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 multi-agent coordination (use orchestration) or implementation. -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Research diff --git a/dist/cursor/skills/ruby-development/SKILL.md b/dist/cursor/skills/ruby-development/SKILL.md index f977bc633..9552b8021 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Ruby Development diff --git a/dist/cursor/skills/security-compliance/SKILL.md b/dist/cursor/skills/security-compliance/SKILL.md index f92ba7f15..468fda0c9 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Security & Compliance diff --git a/dist/cursor/skills/shape/SKILL.md b/dist/cursor/skills/shape/SKILL.md index 0552d784a..e239bcbc4 100644 --- a/dist/cursor/skills/shape/SKILL.md +++ b/dist/cursor/skills/shape/SKILL.md @@ -12,7 +12,7 @@ description: >- conversations, and plain conversation as input. Produces a Change, never a numbered spec or task file. Not for quick capture (use idea) or open-ended divergent thinking before scope exists (use brainstorm). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Shape diff --git a/dist/cursor/skills/ship/SKILL.md b/dist/cursor/skills/ship/SKILL.md index cf7a70788..c788aaa92 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Ship diff --git a/dist/cursor/skills/strategy/SKILL.md b/dist/cursor/skills/strategy/SKILL.md index 9288f80fb..a156fa07f 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Strategy diff --git a/dist/cursor/skills/triage/SKILL.md b/dist/cursor/skills/triage/SKILL.md index ca5713c45..a41259faa 100644 --- a/dist/cursor/skills/triage/SKILL.md +++ b/dist/cursor/skills/triage/SKILL.md @@ -9,7 +9,7 @@ description: >- shape. Not for reading a single known item (use loaf intent show or journal directly), capturing new ideas (use idea), divergent inquiry (use explore), or bounding one chosen direction (use shape). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Triage diff --git a/dist/cursor/skills/typescript-development/SKILL.md b/dist/cursor/skills/typescript-development/SKILL.md index 184ab44d7..74f1064b0 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # TypeScript Development diff --git a/dist/cursor/skills/wrap/SKILL.md b/dist/cursor/skills/wrap/SKILL.md index a555537c2..7726f5ce0 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Wrap diff --git a/dist/opencode/.loaf-target-manifest.json b/dist/opencode/.loaf-target-manifest.json index 5610789c6..d1d2197bb 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": "2.0.0-alpha.13", + "package_version": "2.0.0-alpha.14", "capability_contract_version": 3, "adapters": [ "opencode-plugin-v1" @@ -114,7 +114,7 @@ "kind": "plugin", "source_path": "plugins/hooks.ts", "destination": "plugins/hooks.ts", - "sha256": "3aaf803762a52b541ef7ddac008ff87bba20ac5a7ed3940d8018abe610f84873", + "sha256": "e72c47ecd74a5a37ff54c465cb9b186c3072e88800f2452c59035e7d9f1c15a9", "mode": 420 } ] diff --git a/dist/opencode/agents/background-runner.md b/dist/opencode/agents/background-runner.md index f9d3bc973..d5dcc857f 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/dist/opencode/agents/implementer.md b/dist/opencode/agents/implementer.md index 384b67937..d40361cf5 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/dist/opencode/agents/librarian.md b/dist/opencode/agents/librarian.md index eb12c9f4d..1ae5134ad 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/dist/opencode/agents/researcher.md b/dist/opencode/agents/researcher.md index 5ddc82906..d3e74b311 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/dist/opencode/agents/reviewer.md b/dist/opencode/agents/reviewer.md index ace3cfc40..c72c08044 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/dist/opencode/commands/architecture.md b/dist/opencode/commands/architecture.md index 6de542b7f..e0fa21d8f 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Architecture diff --git a/dist/opencode/commands/bootstrap.md b/dist/opencode/commands/bootstrap.md index 216b06d3e..75ec9f7b6 100644 --- a/dist/opencode/commands/bootstrap.md +++ b/dist/opencode/commands/bootstrap.md @@ -5,7 +5,7 @@ description: >- I start a new project?", "set up Loaf," or "bootstrap my project." Produces populated project documents and setup recommendations. Not for shaping features (use shape) or brainstorming ideas (use brainstorm). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Bootstrap diff --git a/dist/opencode/commands/breakdown.md b/dist/opencode/commands/breakdown.md index 051e2c75b..0e2a3f082 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Breakdown diff --git a/dist/opencode/commands/council.md b/dist/opencode/commands/council.md index b881be7fe..0a1524ce3 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Council diff --git a/dist/opencode/commands/debugging.md b/dist/opencode/commands/debugging.md index 70ad79a1a..bac4bd7b3 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Debugging diff --git a/dist/opencode/commands/explore.md b/dist/opencode/commands/explore.md index 229df05fc..c071218ed 100644 --- a/dist/opencode/commands/explore.md +++ b/dist/opencode/commands/explore.md @@ -9,7 +9,7 @@ description: >- research), continuing implementation or delivery work (use implement), processing the intake queue (use triage), shaping a bounded Change (use shape), or quick capture (use idea). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Explore diff --git a/dist/opencode/commands/handoff.md b/dist/opencode/commands/handoff.md index c07e1d9f3..9a1035ddb 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Handoff diff --git a/dist/opencode/commands/housekeeping.md b/dist/opencode/commands/housekeeping.md index d0384050b..744716af8 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Housekeeping diff --git a/dist/opencode/commands/idea.md b/dist/opencode/commands/idea.md index fa4224471..4e9a50f66 100644 --- a/dist/opencode/commands/idea.md +++ b/dist/opencode/commands/idea.md @@ -7,7 +7,7 @@ description: >- tracking an Intent. Not for divergent inquiry (use explore), processing the intake queue (use triage), or shaping (use shape). subtask: false -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Idea diff --git a/dist/opencode/commands/implement.md b/dist/opencode/commands/implement.md index 2656f09c2..d192e424f 100644 --- a/dist/opencode/commands/implement.md +++ b/dist/opencode/commands/implement.md @@ -6,7 +6,7 @@ description: >- progress tracking. Not for shaping (use shape), breakdown (use breakdown), research, or review. subtask: false -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Implement diff --git a/dist/opencode/commands/refactor-deepen.md b/dist/opencode/commands/refactor-deepen.md index 1bd048c4c..a718ac0b1 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Refactor-Deepen diff --git a/dist/opencode/commands/reflect.md b/dist/opencode/commands/reflect.md index 2fc0f843b..021af5ff7 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Reflect diff --git a/dist/opencode/commands/release.md b/dist/opencode/commands/release.md index 59cff3cff..43488777f 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Release diff --git a/dist/opencode/commands/research.md b/dist/opencode/commands/research.md index dea52ebcf..ed4b915f2 100644 --- a/dist/opencode/commands/research.md +++ b/dist/opencode/commands/research.md @@ -6,7 +6,7 @@ description: >- change proposals. Not for multi-agent coordination (use orchestration) or implementation. subtask: false -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Research diff --git a/dist/opencode/commands/shape.md b/dist/opencode/commands/shape.md index 2cf4bceab..5c5485c74 100644 --- a/dist/opencode/commands/shape.md +++ b/dist/opencode/commands/shape.md @@ -12,7 +12,7 @@ description: >- numbered spec or task file. Not for quick capture (use idea) or open-ended divergent thinking before scope exists (use brainstorm). subtask: false -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Shape diff --git a/dist/opencode/commands/ship.md b/dist/opencode/commands/ship.md index d3cb176f5..348f356a3 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Ship diff --git a/dist/opencode/commands/strategy.md b/dist/opencode/commands/strategy.md index 984534220..a05593ab4 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Strategy diff --git a/dist/opencode/commands/triage.md b/dist/opencode/commands/triage.md index 8d58caa19..683a33aa6 100644 --- a/dist/opencode/commands/triage.md +++ b/dist/opencode/commands/triage.md @@ -9,7 +9,7 @@ description: >- directly), capturing new ideas (use idea), divergent inquiry (use explore), or bounding one chosen direction (use shape). user-invocable: true -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Triage diff --git a/dist/opencode/commands/wrap.md b/dist/opencode/commands/wrap.md index 1180e4564..979c77b0f 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Wrap diff --git a/dist/opencode/plugins/hooks.ts b/dist/opencode/plugins/hooks.ts index e1850697e..a7b85337c 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 2.0.0-alpha.13 + * @version 2.0.0-alpha.14 */ import { execFile } from 'child_process'; diff --git a/dist/opencode/skills/architecture/SKILL.md b/dist/opencode/skills/architecture/SKILL.md index 8eb91d42a..8a1d896af 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Architecture diff --git a/dist/opencode/skills/bootstrap/SKILL.md b/dist/opencode/skills/bootstrap/SKILL.md index c389e1987..85c475556 100644 --- a/dist/opencode/skills/bootstrap/SKILL.md +++ b/dist/opencode/skills/bootstrap/SKILL.md @@ -6,7 +6,7 @@ description: >- I start a new project?", "set up Loaf," or "bootstrap my project." Produces populated project documents and setup recommendations. Not for shaping features (use shape) or brainstorming ideas (use brainstorm). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Bootstrap diff --git a/dist/opencode/skills/brainstorm/SKILL.md b/dist/opencode/skills/brainstorm/SKILL.md index c728c7c1c..1bc8a2a6b 100644 --- a/dist/opencode/skills/brainstorm/SKILL.md +++ b/dist/opencode/skills/brainstorm/SKILL.md @@ -7,7 +7,7 @@ description: >- technique from it. Not a primary entry point — route "explore this" or "help me think through options" to explore. subtask: false -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Brainstorm diff --git a/dist/opencode/skills/breakdown/SKILL.md b/dist/opencode/skills/breakdown/SKILL.md index c70bcb373..86eb0b167 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Breakdown diff --git a/dist/opencode/skills/council/SKILL.md b/dist/opencode/skills/council/SKILL.md index c6cf55ed7..180bc84c1 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Council diff --git a/dist/opencode/skills/database-design/SKILL.md b/dist/opencode/skills/database-design/SKILL.md index b7d900b8c..7bb7ceab4 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Database Skill diff --git a/dist/opencode/skills/debugging/SKILL.md b/dist/opencode/skills/debugging/SKILL.md index 6f2c85dcf..ce968cbdb 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Debugging diff --git a/dist/opencode/skills/documentation-standards/SKILL.md b/dist/opencode/skills/documentation-standards/SKILL.md index beddcb05d..43ab9dbde 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Documentation Standards diff --git a/dist/opencode/skills/explore/SKILL.md b/dist/opencode/skills/explore/SKILL.md index 1435f4d1b..e6c072af3 100644 --- a/dist/opencode/skills/explore/SKILL.md +++ b/dist/opencode/skills/explore/SKILL.md @@ -10,7 +10,7 @@ description: >- research), continuing implementation or delivery work (use implement), processing the intake queue (use triage), shaping a bounded Change (use shape), or quick capture (use idea). -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Explore diff --git a/dist/opencode/skills/foundations/SKILL.md b/dist/opencode/skills/foundations/SKILL.md index 4c0d3bdbd..d55d61bdf 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Code Standards diff --git a/dist/opencode/skills/git-workflow/SKILL.md b/dist/opencode/skills/git-workflow/SKILL.md index abdef0e71..6f5a095e1 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Git Workflow diff --git a/dist/opencode/skills/go-development/SKILL.md b/dist/opencode/skills/go-development/SKILL.md index 180c15fb6..fd7a44376 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Go Skill diff --git a/dist/opencode/skills/handoff/SKILL.md b/dist/opencode/skills/handoff/SKILL.md index eb6355701..e84fd39c4 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Handoff diff --git a/dist/opencode/skills/housekeeping/SKILL.md b/dist/opencode/skills/housekeeping/SKILL.md index cd2e4cccf..079cf894e 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Housekeeping diff --git a/dist/opencode/skills/idea/SKILL.md b/dist/opencode/skills/idea/SKILL.md index aa1470976..6b1d0cb10 100644 --- a/dist/opencode/skills/idea/SKILL.md +++ b/dist/opencode/skills/idea/SKILL.md @@ -8,7 +8,7 @@ description: >- tracking an Intent. Not for divergent inquiry (use explore), processing the intake queue (use triage), or shaping (use shape). subtask: false -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Idea diff --git a/dist/opencode/skills/implement/SKILL.md b/dist/opencode/skills/implement/SKILL.md index 0e9073fca..e42a53b9c 100644 --- a/dist/opencode/skills/implement/SKILL.md +++ b/dist/opencode/skills/implement/SKILL.md @@ -7,7 +7,7 @@ description: >- progress tracking. Not for shaping (use shape), breakdown (use breakdown), research, or review. subtask: false -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Implement diff --git a/dist/opencode/skills/infrastructure-management/SKILL.md b/dist/opencode/skills/infrastructure-management/SKILL.md index 6a97f4b51..1f5fe2069 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Infrastructure diff --git a/dist/opencode/skills/interface-design/SKILL.md b/dist/opencode/skills/interface-design/SKILL.md index 16075da30..b1d81b5f3 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Design Principles diff --git a/dist/opencode/skills/knowledge-base/SKILL.md b/dist/opencode/skills/knowledge-base/SKILL.md index c3f1d701f..4dddfda23 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Knowledge Base diff --git a/dist/opencode/skills/loaf-reference/SKILL.md b/dist/opencode/skills/loaf-reference/SKILL.md index 526ddcbeb..571ee8fec 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Loaf Reference diff --git a/dist/opencode/skills/orchestration/SKILL.md b/dist/opencode/skills/orchestration/SKILL.md index 942c0a6ae..66c0b0fff 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Orchestration diff --git a/dist/opencode/skills/power-systems-modeling/SKILL.md b/dist/opencode/skills/power-systems-modeling/SKILL.md index 8c38c2c91..4e46007f8 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Power Systems Reference diff --git a/dist/opencode/skills/python-development/SKILL.md b/dist/opencode/skills/python-development/SKILL.md index 951f6035f..6164e87c9 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Python Development diff --git a/dist/opencode/skills/refactor-deepen/SKILL.md b/dist/opencode/skills/refactor-deepen/SKILL.md index e1d120b94..987a91e7d 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Refactor-Deepen diff --git a/dist/opencode/skills/reflect/SKILL.md b/dist/opencode/skills/reflect/SKILL.md index c0426beae..be9c2c9a0 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Reflect diff --git a/dist/opencode/skills/release/SKILL.md b/dist/opencode/skills/release/SKILL.md index 15efc9d7a..1c01022f1 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Release diff --git a/dist/opencode/skills/research/SKILL.md b/dist/opencode/skills/research/SKILL.md index be4c8c928..de99f8d2f 100644 --- a/dist/opencode/skills/research/SKILL.md +++ b/dist/opencode/skills/research/SKILL.md @@ -7,7 +7,7 @@ description: >- change proposals. Not for multi-agent coordination (use orchestration) or implementation. subtask: false -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Research diff --git a/dist/opencode/skills/ruby-development/SKILL.md b/dist/opencode/skills/ruby-development/SKILL.md index f977bc633..9552b8021 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Ruby Development diff --git a/dist/opencode/skills/security-compliance/SKILL.md b/dist/opencode/skills/security-compliance/SKILL.md index f92ba7f15..468fda0c9 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Security & Compliance diff --git a/dist/opencode/skills/shape/SKILL.md b/dist/opencode/skills/shape/SKILL.md index 2903d80b2..adcc41e26 100644 --- a/dist/opencode/skills/shape/SKILL.md +++ b/dist/opencode/skills/shape/SKILL.md @@ -13,7 +13,7 @@ description: >- numbered spec or task file. Not for quick capture (use idea) or open-ended divergent thinking before scope exists (use brainstorm). subtask: false -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Shape diff --git a/dist/opencode/skills/ship/SKILL.md b/dist/opencode/skills/ship/SKILL.md index cf7a70788..c788aaa92 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Ship diff --git a/dist/opencode/skills/strategy/SKILL.md b/dist/opencode/skills/strategy/SKILL.md index c9d4dd5b3..c44362aea 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Strategy diff --git a/dist/opencode/skills/triage/SKILL.md b/dist/opencode/skills/triage/SKILL.md index a8d0e6988..0e5db007d 100644 --- a/dist/opencode/skills/triage/SKILL.md +++ b/dist/opencode/skills/triage/SKILL.md @@ -10,7 +10,7 @@ description: >- directly), capturing new ideas (use idea), divergent inquiry (use explore), or bounding one chosen direction (use shape). user-invocable: true -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Triage diff --git a/dist/opencode/skills/typescript-development/SKILL.md b/dist/opencode/skills/typescript-development/SKILL.md index 184ab44d7..74f1064b0 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # TypeScript Development diff --git a/dist/opencode/skills/wrap/SKILL.md b/dist/opencode/skills/wrap/SKILL.md index f38dd972d..913d2571a 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Wrap diff --git a/docs/changes/20260710-journal-reliability-foundation/research/claude-code-2.1.218-plugin-startup-smoke.json b/docs/changes/20260710-journal-reliability-foundation/research/claude-code-2.1.218-plugin-startup-smoke.json index 629a8d467..5d6d819be 100644 --- a/docs/changes/20260710-journal-reliability-foundation/research/claude-code-2.1.218-plugin-startup-smoke.json +++ b/docs/changes/20260710-journal-reliability-foundation/research/claude-code-2.1.218-plugin-startup-smoke.json @@ -1,6 +1,6 @@ { "evidence_version": 2, - "timestamp": "2026-07-25T01:45:43.979Z", + "timestamp": "2026-07-25T11:48:53.331Z", "target": "claude-code", "surface": "cli", "version": "2.1.218", @@ -41,7 +41,7 @@ "stderr_empty": true, "model_visible_marker_observed": true, "assistant_marker_match": true, - "marker": "LOAF_CLAUDE_STARTUP_SMOKE_4F4C2DF3BD62", + "marker": "LOAF_CLAUDE_STARTUP_SMOKE_DCBDD53E99CB", "hook_observation": { "event_name": "SessionStart:startup", "native_json": true, diff --git a/docs/changes/20260710-journal-reliability-foundation/research/codex-0.145.0-isolated-startup-smoke.json b/docs/changes/20260710-journal-reliability-foundation/research/codex-0.145.0-isolated-startup-smoke.json index 1d184ab15..8af09eef3 100644 --- a/docs/changes/20260710-journal-reliability-foundation/research/codex-0.145.0-isolated-startup-smoke.json +++ b/docs/changes/20260710-journal-reliability-foundation/research/codex-0.145.0-isolated-startup-smoke.json @@ -1,6 +1,6 @@ { "evidence_version": 2, - "timestamp": "2026-07-25T01:45:50.706Z", + "timestamp": "2026-07-25T11:48:58.493Z", "target": "codex", "surface": "cli", "version": "0.145.0", @@ -39,7 +39,7 @@ "stderr": "Reading additional input from stdin...", "model_visible_marker_observed": true, "assistant_marker_match": true, - "marker": "LOAF_CODEX_STARTUP_SMOKE_2F90AF9A8C66", + "marker": "LOAF_CODEX_STARTUP_SMOKE_FBB4C6C102BE", "hook_observation": { "event_name": "SessionStart:startup", "native_json": true, diff --git a/docs/changes/20260710-journal-reliability-foundation/research/opencode-1.18.4-isolated-request-smoke.json b/docs/changes/20260710-journal-reliability-foundation/research/opencode-1.18.4-isolated-request-smoke.json index 0596f5b52..4da211f24 100644 --- a/docs/changes/20260710-journal-reliability-foundation/research/opencode-1.18.4-isolated-request-smoke.json +++ b/docs/changes/20260710-journal-reliability-foundation/research/opencode-1.18.4-isolated-request-smoke.json @@ -1,6 +1,6 @@ { "evidence_version": 2, - "timestamp": "2026-07-25T01:46:04.264Z", + "timestamp": "2026-07-25T11:49:10.280Z", "target": "opencode", "surface": "cli", "version": "1.18.4", @@ -39,10 +39,10 @@ "root_session_lookup_proven": true, "no_auth_supplied": true, "cleanup_succeeded": true, - "marker": "LOAF_OPENCODE_REQUEST_SMOKE_D6F5B274A7EA", + "marker": "LOAF_OPENCODE_REQUEST_SMOKE_290A8122905E", "candidate_artifacts": { "hooks_path": "dist/opencode/plugins/hooks.ts", - "hooks_sha256": "3aaf803762a52b541ef7ddac008ff87bba20ac5a7ed3940d8018abe610f84873", + "hooks_sha256": "e72c47ecd74a5a37ff54c465cb9b186c3072e88800f2452c59035e7d9f1c15a9", "native_binary_path": "bin/native/darwin-arm64/loaf", "native_binary_sha256": "97990f1c83d0c29c5169806036719b004b6fb9201b1ef3f6bb2ac666de0be5f4" } diff --git a/package.json b/package.json index 70af050f6..cc53f0652 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "loaf", - "version": "2.0.0-alpha.13", + "version": "2.0.0-alpha.14", "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 208fa08dd..a2cdebce5 100644 --- a/plugins/loaf/.claude-plugin/plugin.json +++ b/plugins/loaf/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "loaf", - "version": "2.0.0-alpha.13", + "version": "2.0.0-alpha.14", "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 899ed4492..d0659d8e4 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": "2.0.0-alpha.13", + "package_version": "2.0.0-alpha.14", "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 f898dfde7..f3883c3ca 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/plugins/loaf/agents/implementer.md b/plugins/loaf/agents/implementer.md index a1df12a10..d19636c3c 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/plugins/loaf/agents/librarian.md b/plugins/loaf/agents/librarian.md index 6dc932f9d..5d26c74de 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/plugins/loaf/agents/researcher.md b/plugins/loaf/agents/researcher.md index af226693d..fdffd0b8d 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/plugins/loaf/agents/reviewer.md b/plugins/loaf/agents/reviewer.md index b489084f9..963d4ae26 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: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 diff --git a/plugins/loaf/package.json b/plugins/loaf/package.json index ceafd42c7..c894f17bd 100644 --- a/plugins/loaf/package.json +++ b/plugins/loaf/package.json @@ -1,4 +1,4 @@ { "name": "loaf", - "version": "2.0.0-alpha.13" + "version": "2.0.0-alpha.14" } \ No newline at end of file diff --git a/plugins/loaf/skills/architecture/SKILL.md b/plugins/loaf/skills/architecture/SKILL.md index 4cc609573..8a0630a68 100644 --- a/plugins/loaf/skills/architecture/SKILL.md +++ b/plugins/loaf/skills/architecture/SKILL.md @@ -7,7 +7,7 @@ description: >- difficult to reverse. Captures ... user-invocable: true argument-hint: '[topic or decision]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Architecture diff --git a/plugins/loaf/skills/bootstrap/SKILL.md b/plugins/loaf/skills/bootstrap/SKILL.md index fd3de80c8..f6b5e20b4 100644 --- a/plugins/loaf/skills/bootstrap/SKILL.md +++ b/plugins/loaf/skills/bootstrap/SKILL.md @@ -8,7 +8,7 @@ description: >- user-invocable: true argument-hint: '[brief or path]' allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep, AskUserQuestion' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Bootstrap diff --git a/plugins/loaf/skills/brainstorm/SKILL.md b/plugins/loaf/skills/brainstorm/SKILL.md index 72b8852ff..d6466d742 100644 --- a/plugins/loaf/skills/brainstorm/SKILL.md +++ b/plugins/loaf/skills/brainstorm/SKILL.md @@ -7,7 +7,7 @@ description: >- technique from it. Not a ... user-invocable: false argument-hint: '[idea or problem]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Brainstorm diff --git a/plugins/loaf/skills/breakdown/SKILL.md b/plugins/loaf/skills/breakdown/SKILL.md index 18293b644..bccc84a1b 100644 --- a/plugins/loaf/skills/breakdown/SKILL.md +++ b/plugins/loaf/skills/breakdown/SKILL.md @@ -7,7 +7,7 @@ description: >- for shaping idea... user-invocable: true argument-hint: '[spec-file or topic]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Breakdown diff --git a/plugins/loaf/skills/council/SKILL.md b/plugins/loaf/skills/council/SKILL.md index 4196e4157..229a2ae5d 100644 --- a/plugins/loaf/skills/council/SKILL.md +++ b/plugins/loaf/skills/council/SKILL.md @@ -7,7 +7,7 @@ description: >- the user wants a st... user-invocable: true argument-hint: '[topic]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Council diff --git a/plugins/loaf/skills/database-design/SKILL.md b/plugins/loaf/skills/database-design/SKILL.md index 094138534..327b15016 100644 --- a/plugins/loaf/skills/database-design/SKILL.md +++ b/plugins/loaf/skills/database-design/SKILL.md @@ -7,7 +7,7 @@ description: >- database administration ... user-invocable: false allowed-tools: 'Read, Write, Edit, Glob, Grep, Bash(psql:*, sqlite3:*, mysql:*)' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Database Skill diff --git a/plugins/loaf/skills/debugging/SKILL.md b/plugins/loaf/skills/debugging/SKILL.md index 46e05509f..da7f457df 100644 --- a/plugins/loaf/skills/debugging/SKILL.md +++ b/plugins/loaf/skills/debugging/SKILL.md @@ -8,7 +8,7 @@ description: >- user-invocable: true argument-hint: '[issue or error]' allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Debugging diff --git a/plugins/loaf/skills/documentation-standards/SKILL.md b/plugins/loaf/skills/documentation-standards/SKILL.md index f8bbb0f7e..c976f472b 100644 --- a/plugins/loaf/skills/documentation-standards/SKILL.md +++ b/plugins/loaf/skills/documentation-standards/SKILL.md @@ -7,7 +7,7 @@ description: >- inline code commen... user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Documentation Standards diff --git a/plugins/loaf/skills/explore/SKILL.md b/plugins/loaf/skills/explore/SKILL.md index b9cea54a2..74e0eef75 100644 --- a/plugins/loaf/skills/explore/SKILL.md +++ b/plugins/loaf/skills/explore/SKILL.md @@ -7,7 +7,7 @@ description: >- this", "we don't know which... user-invocable: true argument-hint: '[topic or exploration ref]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Explore diff --git a/plugins/loaf/skills/foundations/SKILL.md b/plugins/loaf/skills/foundations/SKILL.md index 79494adc7..1fee0768f 100644 --- a/plugins/loaf/skills/foundations/SKILL.md +++ b/plugins/loaf/skills/foundations/SKILL.md @@ -7,7 +7,7 @@ description: >- workflows. Not for git ... user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Code Standards diff --git a/plugins/loaf/skills/git-workflow/SKILL.md b/plugins/loaf/skills/git-workflow/SKILL.md index 6a42a4f4b..1318f348c 100644 --- a/plugins/loaf/skills/git-workflow/SKILL.md +++ b/plugins/loaf/skills/git-workflow/SKILL.md @@ -7,7 +7,7 @@ description: >- workflows. Not for code... user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Git Workflow diff --git a/plugins/loaf/skills/go-development/SKILL.md b/plugins/loaf/skills/go-development/SKILL.md index 40a916961..94f8fe778 100644 --- a/plugins/loaf/skills/go-development/SKILL.md +++ b/plugins/loaf/skills/go-development/SKILL.md @@ -7,7 +7,7 @@ description: >- schema design (use... user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Go Skill diff --git a/plugins/loaf/skills/handoff/SKILL.md b/plugins/loaf/skills/handoff/SKILL.md index 094433b43..aa3a73d05 100644 --- a/plugins/loaf/skills/handoff/SKILL.md +++ b/plugins/loaf/skills/handoff/SKILL.md @@ -7,7 +7,7 @@ description: >- being parked for l... user-invocable: true argument-hint: '[next-session focus]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Handoff diff --git a/plugins/loaf/skills/housekeeping/SKILL.md b/plugins/loaf/skills/housekeeping/SKILL.md index 717a341ea..b1dcfa1b4 100644 --- a/plugins/loaf/skills/housekeeping/SKILL.md +++ b/plugins/loaf/skills/housekeeping/SKILL.md @@ -7,7 +7,7 @@ description: >- completed work, and ens... user-invocable: true argument-hint: '[sessions|specs|plans|drafts|handoffs]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Housekeeping diff --git a/plugins/loaf/skills/idea/SKILL.md b/plugins/loaf/skills/idea/SKILL.md index 6fee3682d..7ae5d314e 100644 --- a/plugins/loaf/skills/idea/SKILL.md +++ b/plugins/loaf/skills/idea/SKILL.md @@ -7,7 +7,7 @@ description: >- capture primitives ro... user-invocable: true argument-hint: '[idea description]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Idea diff --git a/plugins/loaf/skills/implement/SKILL.md b/plugins/loaf/skills/implement/SKILL.md index a4eee6b52..4fe0e29e0 100644 --- a/plugins/loaf/skills/implement/SKILL.md +++ b/plugins/loaf/skills/implement/SKILL.md @@ -7,7 +7,7 @@ description: >- progress tracking. No... user-invocable: true argument-hint: '[TASK-XXX | SPEC-XXX | TASK-XXX..YYY | TASK-XXX,YYY | description]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Implement diff --git a/plugins/loaf/skills/infrastructure-management/SKILL.md b/plugins/loaf/skills/infrastructure-management/SKILL.md index 736c7ba4c..d6bdc14ee 100644 --- a/plugins/loaf/skills/infrastructure-management/SKILL.md +++ b/plugins/loaf/skills/infrastructure-management/SKILL.md @@ -7,7 +7,7 @@ description: >- application code ... user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Infrastructure diff --git a/plugins/loaf/skills/interface-design/SKILL.md b/plugins/loaf/skills/interface-design/SKILL.md index fc6f8b3f0..bb963b502 100644 --- a/plugins/loaf/skills/interface-design/SKILL.md +++ b/plugins/loaf/skills/interface-design/SKILL.md @@ -7,7 +7,7 @@ description: >- typescript-development) or AP... user-invocable: false allowed-tools: 'Read, Write, Edit, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Design Principles diff --git a/plugins/loaf/skills/knowledge-base/SKILL.md b/plugins/loaf/skills/knowledge-base/SKILL.md index 91b90e486..c4aba1d8b 100644 --- a/plugins/loaf/skills/knowledge-base/SKILL.md +++ b/plugins/loaf/skills/knowledge-base/SKILL.md @@ -7,7 +7,7 @@ description: >- directly), archite... user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Knowledge Base diff --git a/plugins/loaf/skills/loaf-reference/SKILL.md b/plugins/loaf/skills/loaf-reference/SKILL.md index 7a2a61739..0d6df922d 100644 --- a/plugins/loaf/skills/loaf-reference/SKILL.md +++ b/plugins/loaf/skills/loaf-reference/SKILL.md @@ -6,7 +6,7 @@ description: >- when unsure which loaf command to invoke, how to validate project state, or when asked to upg... user-invocable: false -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Loaf Reference diff --git a/plugins/loaf/skills/orchestration/SKILL.md b/plugins/loaf/skills/orchestration/SKILL.md index 138b7dacf..70de04098 100644 --- a/plugins/loaf/skills/orchestration/SKILL.md +++ b/plugins/loaf/skills/orchestration/SKILL.md @@ -7,7 +7,7 @@ description: >- implementation (use direct ... user-invocable: false allowed-tools: 'Read, Write, Edit, Glob, Grep, TodoWrite, TodoRead' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Orchestration diff --git a/plugins/loaf/skills/power-systems-modeling/SKILL.md b/plugins/loaf/skills/power-systems-modeling/SKILL.md index f85dc4bbf..07a07296a 100644 --- a/plugins/loaf/skills/power-systems-modeling/SKILL.md +++ b/plugins/loaf/skills/power-systems-modeling/SKILL.md @@ -7,7 +7,7 @@ description: >- Not for infras... user-invocable: false allowed-tools: 'Read, Write, Edit, Glob, Grep, Bash(python:*), Bash(*.sh)' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Power Systems Reference diff --git a/plugins/loaf/skills/python-development/SKILL.md b/plugins/loaf/skills/python-development/SKILL.md index 62b0617d0..da95277d7 100644 --- a/plugins/loaf/skills/python-development/SKILL.md +++ b/plugins/loaf/skills/python-development/SKILL.md @@ -7,7 +7,7 @@ description: >- schema design (use database-... user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Python Development diff --git a/plugins/loaf/skills/refactor-deepen/SKILL.md b/plugins/loaf/skills/refactor-deepen/SKILL.md index 4664b7356..ac9e2fc71 100644 --- a/plugins/loaf/skills/refactor-deepen/SKILL.md +++ b/plugins/loaf/skills/refactor-deepen/SKILL.md @@ -7,7 +7,7 @@ description: >- improvements, or when t... user-invocable: true argument-hint: '[module or area]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Refactor-Deepen diff --git a/plugins/loaf/skills/reflect/SKILL.md b/plugins/loaf/skills/reflect/SKILL.md index 12a9b8232..50ed51a29 100644 --- a/plugins/loaf/skills/reflect/SKILL.md +++ b/plugins/loaf/skills/reflect/SKILL.md @@ -7,7 +7,7 @@ description: >- experience. Not for pre-i... user-invocable: true argument-hint: '[SPEC-ID or topic]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Reflect diff --git a/plugins/loaf/skills/release/SKILL.md b/plugins/loaf/skills/release/SKILL.md index c16780df9..f710b6f3f 100644 --- a/plugins/loaf/skills/release/SKILL.md +++ b/plugins/loaf/skills/release/SKILL.md @@ -7,7 +7,7 @@ description: >- a release," "pu... user-invocable: true argument-hint: '[version, base, or release intent]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Release diff --git a/plugins/loaf/skills/research/SKILL.md b/plugins/loaf/skills/research/SKILL.md index 93d93d2e6..1a1691f33 100644 --- a/plugins/loaf/skills/research/SKILL.md +++ b/plugins/loaf/skills/research/SKILL.md @@ -7,7 +7,7 @@ description: >- change proposa... user-invocable: true argument-hint: '[topic]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Research diff --git a/plugins/loaf/skills/ruby-development/SKILL.md b/plugins/loaf/skills/ruby-development/SKILL.md index b89bb5bbe..db297b5bb 100644 --- a/plugins/loaf/skills/ruby-development/SKILL.md +++ b/plugins/loaf/skills/ruby-development/SKILL.md @@ -7,7 +7,7 @@ description: >- schema design (u... user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Ruby Development diff --git a/plugins/loaf/skills/security-compliance/SKILL.md b/plugins/loaf/skills/security-compliance/SKILL.md index 6376cf99f..4df349948 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 gener... user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Security & Compliance diff --git a/plugins/loaf/skills/shape/SKILL.md b/plugins/loaf/skills/shape/SKILL.md index f52b53ec0..c74ccc066 100644 --- a/plugins/loaf/skills/shape/SKILL.md +++ b/plugins/loaf/skills/shape/SKILL.md @@ -7,7 +7,7 @@ description: >- for known unknowns, reaction artifa... user-invocable: true argument-hint: '[messy input to shape into a Change]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Shape diff --git a/plugins/loaf/skills/ship/SKILL.md b/plugins/loaf/skills/ship/SKILL.md index f7dc7acba..b5a09b51b 100644 --- a/plugins/loaf/skills/ship/SKILL.md +++ b/plugins/loaf/skills/ship/SKILL.md @@ -7,7 +7,7 @@ description: >- cleanup. Not for version b... user-invocable: true argument-hint: '[PR number or URL]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Ship diff --git a/plugins/loaf/skills/strategy/SKILL.md b/plugins/loaf/skills/strategy/SKILL.md index 5dc100d05..f5135ac07 100644 --- a/plugins/loaf/skills/strategy/SKILL.md +++ b/plugins/loaf/skills/strategy/SKILL.md @@ -7,7 +7,7 @@ description: >- architecture (use arc... user-invocable: true argument-hint: '[topic]' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Strategy diff --git a/plugins/loaf/skills/triage/SKILL.md b/plugins/loaf/skills/triage/SKILL.md index 6cd314af5..747c86f9b 100644 --- a/plugins/loaf/skills/triage/SKILL.md +++ b/plugins/loaf/skills/triage/SKILL.md @@ -6,7 +6,7 @@ description: >- deferrals. Use when the user asks "triage", "process my backlog", or wants dispositions chosen acros... user-invocable: true -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Triage diff --git a/plugins/loaf/skills/typescript-development/SKILL.md b/plugins/loaf/skills/typescript-development/SKILL.md index c0d878a32..86f79a703 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 ... user-invocable: false allowed-tools: 'Read, Write, Edit, Bash, Glob, Grep' -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # TypeScript Development diff --git a/plugins/loaf/skills/wrap/SKILL.md b/plugins/loaf/skills/wrap/SKILL.md index 5a448fcc5..2db5ff0cb 100644 --- a/plugins/loaf/skills/wrap/SKILL.md +++ b/plugins/loaf/skills/wrap/SKILL.md @@ -6,7 +6,7 @@ description: >- entry to the project journal when there is synthesis worth saving. Use at the end of a work s... user-invocable: true -version: 2.0.0-alpha.13 +version: 2.0.0-alpha.14 --- # Wrap