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:
2026-06-13 16:30:11 +02:00
parent 6d73d2b12a
commit 2fa824aafe
2 changed files with 27 additions and 68 deletions
+27
View File
@@ -46,3 +46,30 @@ graph TD;
B-->D;
C-->D;
```
## 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** — `server`, `common`, `clients/desktop`. `experiments/`
is a deliberate sandbox: it is iterated autonomously and stays outside
the review scope (architect / quality reviewer do not walk it).
- **Build** — `cargo build --manifest-path server/Cargo.toml`.
- **Test** — `cargo test --manifest-path server/Cargo.toml -j 4`. The
inner loop stays server-focused; `common/` comes along via path-dep. The
full multi-world + Gradle sweep runs at cycle close via the regression
script.
- **Lint** — `cargo clippy`.
- **Regression scripts** — `scripts/check.sh` (fmt + clippy + build + test
across all four Cargo worlds plus the Wear OS Gradle build; exit code =
number of FAIL stages). `scripts/regress_whisper.sh` is deliberately NOT
here: it needs a live Whisper service (network) and runs on demand, not
as a hermetic audit gate.
- **Standing reading** — `docs/projektplan.md` is deliberately NOT standing
reading (~150 KB, too heavy for every dispatch); read it explicitly when
a task needs it.
- **Issue tracker** — Gitea, repo `Brummel/doctate`.
- browsable URL: `http://192.168.178.103:3000/Brummel/doctate`
- list open issues: `tea issues ls --repo Brummel/doctate --state open`