ワンクリックで
allure-agent-mode-feature-delivery
// Use Allure agent-mode to design or review test scope, create per-run expectations, run targeted tests, review runtime evidence, and iterate until the test loop is acceptable.
// Use Allure agent-mode to design or review test scope, create per-run expectations, run targeted tests, review runtime evidence, and iterate until the test loop is acceptable.
| name | allure-agent-mode-feature-delivery |
| description | Use Allure agent-mode to design or review test scope, create per-run expectations, run targeted tests, review runtime evidence, and iterate until the test loop is acceptable. |
Use this skill for feature or bug work that changes tests, for reviewing existing tests, auditing coverage, triaging failing suites, investigating weak evidence, or debugging flaky and environment-sensitive failures.
allure agent. It preserves the original console logs and adds agent-mode artifacts without inheriting the normal report or export plugins from the project config.allure agent for smoke checks too, even when the change is small or mechanical.If the project has docs/allure-agent-mode.md, read it before writing or reviewing tests.
If it does not, use the guidance in this skill and suggest running the setup skill later.
allure agent before relying on raw console output.index.md, manifest/run.json, manifest/tests.jsonl, manifest/findings.jsonl, and the relevant test markdown files before inspecting source code.allure agent, even if the goal is only a smoke check after a mechanical change such as typing cleanup, mock refactors, or helper extraction.index.md, manifest/run.json, manifest/tests.jsonl, and manifest/findings.jsonl.allure agent.Compact coverage-review pattern:
TMP_DIR="$(mktemp -d)"
EXPECTATIONS="$TMP_DIR/expectations.yaml"
npx allure agent \
--output "$TMP_DIR/agent-output" \
--expectations "$EXPECTATIONS" \
-- npm test -- <scope>
Coverage-review expectations example:
goal: Review package tests
task_id: package-review
expected:
label_values:
module: my-module
notes:
- Review runtime evidence before source inspection.
ALLURE_AGENT_OUTPUT.ALLURE_AGENT_EXPECTATIONS.references/expectations-example.yaml