chore: move skills-plugin profile into CLAUDE.md project facts
The skills plugin dropped dev-cycle-profile.yml. Migrate this project's facts into CLAUDE.md under '## Skills plugin: project facts' and remove the profile file.
This commit is contained in:
@@ -1,54 +0,0 @@
|
||||
# Project profile for the skills plugin (~/dev/skills).
|
||||
# Schema: ~/dev/skills/docs/profile-schema.md
|
||||
|
||||
paths:
|
||||
spec_dir: docs/specs
|
||||
plan_dir: docs/plans
|
||||
design_ledger: docs/design/INDEX.md
|
||||
glossary: docs/glossary.md
|
||||
code_roots: [crates]
|
||||
|
||||
naming:
|
||||
counter_dirs: [docs/specs, docs/plans]
|
||||
policy: stable_per_directory_4digit
|
||||
slug_separator: "-"
|
||||
|
||||
commands:
|
||||
build: "cargo build --workspace"
|
||||
test: "cargo test --workspace"
|
||||
lint: "cargo clippy --workspace --all-targets -- -D warnings"
|
||||
doc_build: "cargo doc --workspace --no-deps 2>&1"
|
||||
regression: []
|
||||
architect_sweeps: []
|
||||
|
||||
vocabulary:
|
||||
cycle: cycle
|
||||
subcycle: iteration
|
||||
milestone: milestone
|
||||
ledger_entry: contract
|
||||
|
||||
standing_reading:
|
||||
always:
|
||||
- CLAUDE.md
|
||||
- "git log -10 --format=full"
|
||||
by_role: {}
|
||||
|
||||
git:
|
||||
main_sacrosanct: true
|
||||
only_orchestrator_commits: true
|
||||
protected_branches: [main]
|
||||
issue_tracker:
|
||||
kind: gitea
|
||||
close_marker: "closes #N"
|
||||
url: "http://192.168.178.103:3000/Brummel/Aura/issues"
|
||||
list_cmd: "tea issues ls --repo Brummel/Aura --state open"
|
||||
|
||||
notifications: {}
|
||||
|
||||
pipeline:
|
||||
brainstorm: { gates: [planner] }
|
||||
planner: { gates: [implement] }
|
||||
implement: {}
|
||||
audit: { mandatory_at: cycle_close }
|
||||
debug: { trigger: bug, red_first: true }
|
||||
boss: { spec_auto_sign: true }
|
||||
@@ -132,3 +132,21 @@ design decision, not a refactor, and belongs in the ledger.
|
||||
harness and is an execution viewer / trace explorer (structure before, live
|
||||
streams during, recorded traces after) — never a scene editor; topology is
|
||||
grown in Rust + hot-reload, runtime params are UI-tunable.
|
||||
|
||||
## Skills plugin: project facts
|
||||
|
||||
The few facts the skills plugin needs that genuinely vary per project.
|
||||
Everything else is a fixed convention (see `~/dev/skills/docs/conventions.md`).
|
||||
|
||||
- **Code roots** — `crates`
|
||||
- **Build** — `cargo build --workspace`
|
||||
- **Test** — `cargo test --workspace`
|
||||
- **Lint** — `cargo clippy --workspace --all-targets -- -D warnings`
|
||||
- **Doc build** — `cargo doc --workspace --no-deps 2>&1`
|
||||
- **Design ledger** — `docs/design/INDEX.md`
|
||||
- **Glossary** — `docs/glossary.md`
|
||||
- **Issue tracker** — Gitea, repo `Brummel/Aura`:
|
||||
- browsable URL: `http://192.168.178.103:3000/Brummel/Aura/issues`
|
||||
- list open issues: `tea issues ls --repo Brummel/Aura --state open`
|
||||
- **Spec auto-sign** — **enabled**. This project allows a `/boss` run to sign a
|
||||
spec in the user's place through `specify`'s auto-sign gate.
|
||||
|
||||
Reference in New Issue
Block a user