Execute a task from file path or GitHub issue with full implementation workflow
Executes complete implementation workflows from GitHub issues or task files, including planning, coding, testing, and creating pull requests.
/plugin marketplace add leobrival/topographic-plugins-official/plugin install dev@topographic-plugins-officialExecute complete implementation workflow from issue or file.
$ARGUMENT can be:
https://github.com/user/repo/issues/123123./tasks/add-feature.mdFor GitHub issue:
gh issue view $ARGUMENT --json title,body,labels,assignees
For file path:
cat $ARGUMENT
Extract:
Discovery phase:
Create detailed plan:
## Implementation Plan
### Context
[What needs to be built and why]
### Files to modify:
1. src/components/Feature.tsx
2. src/services/api.ts
3. tests/Feature.test.ts
### Steps:
1. [Specific implementation steps]
2. [...]
Systematic implementation:
Auto-correct with TypeScript:
Create clean commit:
git add .
git commit -m "feat: [clear description of changes]"
Follow Commitizen convention:
feat: - New featurefix: - Bug fixrefactor: - Code refactoringtest: - Test updatesdocs: - DocumentationGenerate comprehensive PR:
gh pr create --title "[Title]" --body "[Description]"
PR description includes:
## Changes
- Implemented [feature]
- Fixed [issue]
## Testing
- TypeScript compilation passes
- All tests passing
- Linting passes
## Related Issues
Closes #123
# From GitHub issue URL
/run-task https://github.com/user/repo/issues/123
# From issue number
/run-task 123
# From task file
/run-task ./tasks/implement-auth.md
# From inline description
/run-task "Add email validation to user profile form"
gh auth login