Workflow fix
Skill jajupmochi/agent-harness/skills/.task-orchestrator-templates/workflow-fix
Linlin's curated AI agent harness configuration: workflow rules, skills, hooks, plugin recommendations, tooling preferences, and project templates. Loadable into any new project so a fresh /init can pick the relevant subset.From the repository description
npx -y skills add jajupmochi/agent-harness --skill workflow-fixAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.0 KB, 461 tokens by cl100k_base, as published. Nobody here has run it
workflow-fix-template
RESEARCH phase checklist
- List ALL workflow files:
ls .github/workflows/ - Check CI run logs (gh CLI or web UI):
gh run list --limit 5; gh run view <id> --log - Identify EVERY failing job — do not stop at the first one
- For each failure: read the log output, identify root cause
- Common failure patterns:
- Gitleaks false positives → needs .gitleaks.toml
- npm ERR_OSSL_EVP_UNSUPPORTED → needs NODE_OPTIONS=--openssl-legacy-provider
- Missing binary → check bin field in package.json
- Permission denied → check chmod +x, workflow scope
- Raw URL 404 → check file paths in raw-url job
DESIGN phase checklist
- For each failure: design minimal fix
- Check if fix affects other jobs in the same workflow
- Check if fix affects the OTHER workflow file (install-verify ↔ privacy-scan)
- Any new config files needed? (.gitleaks.toml, .npmrc, etc.)
PLAN template
1. Fix [JOB_NAME] in [WORKFLOW_FILE]: [ROOT_CAUSE] → [FIX]
2. Fix [JOB_NAME] in [WORKFLOW_FILE]: [ROOT_CAUSE] → [FIX]
3. Create [CONFIG_FILE] if needed
4. Local verify: [VERIFY_COMMANDS]
5. Commit with conventional format: fix(ci): [DESCRIPTION]
6. Push
7. Check CI status: gh run watch
VERIFY phase checklist
- Run CI locally if possible
- Push and watch:
gh run watch - ALL jobs must pass — if any fail, go back to RESEARCH
- Check both main AND codex-adapter branches
- Confirm no regression in previously-passing jobs
Anti-patterns
- Fixing only the first error found → audit ALL failures
- Assuming a fix works without checking CI → always verify
- Forgetting to check the OTHER workflow file → cross-check both
- Using force push for workflow fixes → use normal push, let CI validate
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.