Install
$ agentstack add skill-furedea-agent-harness-github-ci-init ✓ 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
GitHub CI Init Workflow
Scope
This skill adds optional, project-specific GitHub Actions CI workflows to a repository. It complements the furedea/template-minimal GitHub template, which already ships the baseline workflows (gha_lint.yml, dependency_review.yml, dependency_review_config.yml, renovate.json).
It does NOT own writing or editing the YAML contents of individual workflow files — that belongs to the gha-style skill (permissions minimization, action version pinning, script injection prevention, etc.).
When to apply vs skip
Not every project benefits from these optional workflows. Applying them to a throwaway repo creates maintenance noise (CodeQL alerts on every PR, release-please commits) that outweighs the payoff.
Apply when
- The project has a plausible long-term lifetime (weeks to years)
- PRs are expected (from others, or from yourself via feature branches)
- The project is public, or likely to become public
Skip when
- It's a throwaway experiment, tutorial follow-along, or one-off script
- The project lives in a single commit and won't be touched again
- It's a scratch space for exploring a library
When in doubt, skip. CI can always be added later by running this skill again on the existing repo — that is exactly the retrofit case it is designed for.
What templates already provide
These files are already in GitHub templates and should NOT be added by this skill:
gha_lint.yml— actionlint + zizmor (intemplate-minimaland all derived templates)dependency_review.yml+dependency_review_config.yml— dependency vulnerability review (same)renovate.json— automated dependency updates (same)codeql.yml— CodeQL analysis (in language-specific templates:template-rust,template-python,template-typescript)
Steps
- Confirm the project passes the "apply" criteria. If it does not, stop and explain why CI would be net-negative for this project.
- Create
.github/workflows/in the project root if it does not already exist. - Copy the relevant workflow files from
templates/(in this skill's directory) into the project's.github/workflows/:
release_please.yml— opens release PRs from Conventional Commits; ship when the project will have versioned releases. Replacerelease-type: simplewith a repo-specific strategy (e.g.python,node,rust) if needed.claude.yml— responds to@claudementions in issues, PRs, and review comments via Claude Code Action (OAuth). Requires theCLAUDE_CODE_OAUTH_TOKENrepository secret.claude_code_review.yml— runs automated Claude Code Review on every PR via thecode-reviewplugin. Requires the sameCLAUDE_CODE_OAUTH_TOKENsecret.artifact_attestation.yml— generates SLSA build provenance attestations on release via Sigstore. Ship when the project publishes binaries, packages, or container images. Replace the build steps andsubject-pathto match the project's actual build outputs.
- Remind the user about the GitHub-side features (Push Protection / Secret Scanning / Rulesets). These live in repo or org settings, not in
.github/workflows/, so this skill cannot install them.
Handoff to gha-style
After copying, any edit to the resulting .github/workflows/*.yml — changing triggers, tuning permissions:, adding a job, pinning an action version, fixing an actionlint warning, responding to a zizmor finding — belongs to the gha-style skill.
This split is deliberate:
github-ci-initowns the "which files exist" decision. It is a one-shot, per-repo scaffolding action.gha-styleowns the "how each file is written" decision. It is an ongoing code-review loop every time a workflow is touched.
Duplicating either side into the other would let the two drift. Keep them separate and chain them: scaffold with this skill, then edit with gha-style.
Anti-patterns
- Applying the full set to a throwaway experiment. CodeQL/release-please on a 1-commit repo is pure maintenance noise.
- Editing workflow YAML inside this skill's flow. Redirect to
gha-style. Even "just tuning one permission" should go through that skill so the conventions stay consistent. - Deploying Claude Code Action without the
CLAUDE_CODE_OAUTH_TOKENsecret configured in the repository. The workflows will fail silently on every trigger. - Re-adding workflows that templates already provide (ghalint, dependencyreview, renovate, codeql). These are maintained in the GitHub templates — duplicating them here causes drift.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: furedea
- Source: furedea/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.