en un clic
git-workflow
// Git conventions: conventional commits, branch naming, PR hygiene, release tagging.
// Git conventions: conventional commits, branch naming, PR hygiene, release tagging.
Session bootstrap + workflows for Pathfinder semantic navigation tools. Covers: discovery protocol, tool chaining patterns (explore, impact, audit, debug), search optimization, LSP degraded mode, and error recovery.
Playwright browser automation via MCP. Covers E2E testing, UI review, web scraping, screenshot capture, and general browser interaction. MCP-first — CLI is fallback only.
Safe command execution: input sanitization, timeout handling, output capture, error propagation. For spawning processes, shell commands, system calls.
Structured incident workflow: severity classification, triage, diagnosis, mitigation, postmortem, and prevention. Template-driven with blameless review.
Constructs, validates, and traverses a Directed Acyclic Graph (DAG) from scope cards for safe level-based parallel dispatch. Determines execution order via topological sort. Detects cycles and invalid dependencies.
Decomposes broad tasks into MECE, parallelizable sub-tasks with explicit scope cards. Core skill for intra-domain parallel dispatch. Produces scope cards consumed by parallel-dispatch-dag, parallel-dispatch-ownership, and parallel-dispatch-merge skills.
| name | git-workflow |
| description | Git conventions: conventional commits, branch naming, PR hygiene, release tagging. |
| user-invocable | false |
<type>(<scope>): <description>
[optional body]
[optional footer]
| Type | Purpose |
|---|---|
| feat | New feature |
| fix | Bug fix |
| docs | Documentation |
| style | Formatting |
| refactor | No feature/fix change |
| test | Adding/updating tests |
| chore | Maintenance, deps |
| perf | Performance |
| ci | CI/CD config |
Rules: imperative mood ("add" not "added"), scope = feature area, <72 chars, body explains WHY.
Format: <type>/<ticket-or-desc> (kebab-case)
feat/task-crud-api
fix/auth-token-expiry
refactor/storage-layer
chore/update-deps
When working in monorepos with multiple packages/services:
feat(api): add task endpoint — scope = package nameFor automated versioning and changelog generation:
feat → minor, fix → patch, BREAKING CHANGE → majorsemantic-release (Node.js), release-please (GitHub), go-semantic-release (Go)alpha, beta, rc for pre-release testingWhen orchestrator uses git worktrees for parallel agent execution:
.wt/<agent-name> — consistent prefix for cleanupwt/<agent-name>-<timestamp> — unique per dispatch.wt/<agent-name>-<scope> — scope qualifier from scope cardwt/<agent-name>-<scope>-<timestamp> — unique per scoped dispatch.wt/backend-engineer-auth, .wt/backend-engineer-tasks, .wt/scout-infra@<agent>[integration] branches always merge after all feature branchesparallel-dispatch-merge skill