super-productivity/.agents/skills/commit-messages/SKILL.md
Lane Sawyer 87f15c8c65
chore(config): adopt AGENTS.md as shared AI-agent config with skills (#8864)
Make AGENTS.md the single source of guidance read natively by Claude
Code, OpenAI Codex, and GitHub Copilot. CLAUDE.md becomes a symlink to
it. Extract commit-message guidance into a reusable Agent Skill under
.agents/skills (read by Codex and Copilot); .claude/skills symlinks to
it for Claude Code, and .gitignore is narrowed to /.claude/* so only
that skills pointer is tracked. Drop the now-redundant
.github/copilot-instructions.md symlink since Copilot reads AGENTS.md.

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-09 15:30:56 +02:00

829 B

name description
commit-messages Write a commit message for this repo. Use when committing, crafting a commit message, or squashing. Enforces the Angular conventional-commit format and the test-scope rule.

Commit messages

Angular conventional-commit format: type(scope): description.

Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore.

Examples:

  • feat(tasks): add recurring task support
  • fix(sync): handle network timeout

Rules:

  • Description is imperative, lower-case, no trailing period.
  • Never fix(test): or fix(e2e): — changes to tests use the test: type (e.g. test(sync): cover vector-clock pruning).
  • Scope is the touched feature/area (tasks, sync, ui, plugins, …); omit it only when the change is genuinely repo-wide.