Install
$ agentstack add skill-jajupmochi-agent-harness-workflow-fix ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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 --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 ERROSSLEVPUNSUPPORTED → needs NODEOPTIONS=--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
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: jajupmochi
- Source: jajupmochi/agent-harness
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.