Engine Behavior Reporting
SkillDocs & knowledgeExpand or maintain the engine behavior coverage report in citum-core. Use this skill when converting additional citum-engine integration suites into behavior-oriented tests, adding them to the nextest-backed Markdown/HTML report, refining behavior summaries, or updating the published docs report without increasing PR CI time.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Engine Behavior Reporting skill
What this skill tells your AI
The instructions your AI receives, as published by citum/citum-core in .claude/skills/engine-behavior-reporting/SKILL.md and read by ahel’s review.
Type: User-Invocable, Agent-Invocable LLM Access: Yes Purpose: Keep engine behavior tests readable to humans and keep the generated behavior report aligned with those tests.
This skill is intentionally engine-specific. Use migration-behavior-reporting for citum-migrate.
Use This Skill When
- You are converting another
crates/citum-engine/tests/*.rsintegration suite into behavior-oriented scenarios. - You are adding another engine suite to the generated behavior report.
- You are improving
announce_behavior(...)summaries for report quality. - You are updating the docs publication path for the behavior coverage page.
Do Not Use This Skill When
- You are changing low-level unit tests under
src/. - You are trying to make
cargo nextest runitself into the human report. - You are expanding coverage outside
citum-engineintegration suites.
Current Report Scope
The published report currently covers:
crates/citum-engine/tests/citations.rscrates/citum-engine/tests/document.rscrates/citum-engine/tests/i18n.rs
Expansion Workflow
- Pick the next engine integration suite with clear user-visible behavior. Prefer acceptance-style suites over low-level internals.
- Rewrite that suite to match the pilot shape:
- group related scenarios into modules
- keep scenario names readable
- call
announce_behavior(...)with one plain sentence per scenario - keep setup in shared helpers where possible
- Ensure the scenario text describes observable behavior, not implementation trivia. Good: "A grouped bibliography should restart year suffixes inside each group." Bad: "Calls processor.process_document and asserts the result matches snapshot."
- Add the suite to the reporting pipeline:
- add its binary-to-source mapping in
scripts/generate-test-report.py - add it to the default target list in
scripts/test-report.shonly if it should be part of the default published engine report
- add its binary-to-source mapping in
- Regenerate the report with
./scripts/test-report.sh. - Read
target/test-report.mdortarget/test-report.htmland confirm it is useful to a human reviewer without opening source.
Source Reference Rules
- The report should emit concise repo-relative source references like
crates/citum-engine/tests/foo.rs:120-128. - Do not publish generated source-browser pages.
- Do not add GitHub-specific links.
CI Rule
- Do not lengthen normal PR CI for this feature.
- Keep behavior-report publication in
main-only or manual docs workflows unless the user explicitly asks for PR-time publication.
Files To Update
crates/citum-engine/tests/common/mod.rscrates/citum-engine/tests/*.rsscripts/generate-test-report.pyscripts/test-report.shdocs/index.htmldocs/README.md.github/workflows/compat-report.yml.github/workflows/deploy_docs.yml
Validation
For report-only or docs-only changes:
./scripts/validate-frontmatter.sh --repo-only --copilot-strict./scripts/test-report.sh
For Rust-touching changes in test files or Cargo manifests:
cargo fmtcargo clippy --all-targets --all-features -- -D warningscargo nextest run./scripts/test-report.sh
Definition Of Done
- The converted suite is readable on its own.
- The generated report shows behavior bullets, not machine-oriented inventory.
- Source references point to the right file and line range.
- The docs publication path still avoids extending normal PR CI time.
Signals
- GitHub stars
- 33
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
engine-behavior-reporting- Source
- github.com/citum/citum-core