From python
Validates post-implementation code via tests, type checks, linting, builds; invokes code review; stacks commits with git-town; prepares PR summary. Triggers after 'finish' or tasks done.
npx claudepluginhub martinffx/atelier --plugin pythonThis skill uses the workspace's default tool permissions.
Post-implementation workflow: validate → review → stack commits → prepare PR.
Validates code quality via tests, linting, security; auto-fixes issues; generates commits; multi-agent reviews; creates PRs. Use after features to ship confidently.
Guides finishing development branches by verifying tests pass, running code reviews with git diffs, auditing test alignment, and presenting merge/PR/cleanup options.
Verifies completed work before committing: identifies task from context/git diff, runs project build/test/lint commands, manually checks requirements, scans for debug code and common issues.
Share bugs, ideas, or general feedback.
Post-implementation workflow: validate → review → stack commits → prepare PR.
Before starting, verify:
If not complete → go back to spec-implement.
Run validation checks.
npm test
# or
pytest
# or
cargo test
npm run typecheck
# or
python -m mypy
# or
cargo check
npm run lint
# or
ruff check .
# or
cargo clippy
npm run build
# or
go build ./...
If any fail: Return to spec-implement to fix.
If all pass: Proceed.
Use the Skill tool to invoke code-review skill for comprehensive code review.
Use the Skill tool to invoke code-stacked-commit skill.
gt stackgt branch restackOptional - use code-docs skill if needed.
## Completion Summary
**Feature:** [name]
**Tests:** [passed/failed]
**Type Check:** [passed/failed]
**Lint:** [passed/failed]
**Commits:** [N commits in stack]
**Ready for PR:** [yes/no]
"Implementation complete. [N] commits stacked. Ready for [submit/open PR]."
This skill orchestrates other skills: