-
Notifications
You must be signed in to change notification settings - Fork 55
workflow
github-actions[bot] edited this page Feb 26, 2026
·
2 revisions
- Development starts with local coding + local data population for realistic UI preview.
- PR CI validates quality/security and skill test suites.
- PR Pages-verify validates production build/signing behavior without publishing.
- Tag-driven release workflow packages and signs skill artifacts.
- Pages deploy workflow mirrors release/advisory artifacts and publishes the static site.
- Wiki-sync workflow publishes repo
wiki/docs to GitHub Wiki onmain. - Scheduled workflows continuously enrich advisory feed and supply-chain visibility.
| Workflow | Trigger | Main Steps |
|---|---|---|
| CI | PR/push to main
|
Lint, typecheck, build, Python checks, security scans, skill tests. |
| Pages Verify | PRs to main
|
Build Pages artifact and validate signing outputs (no publish). |
| Poll NVD CVEs | Daily cron + manual dispatch | Fetch CVEs, transform/dedupe, update feed, sign artifacts, PR changes. |
| Process Community Advisory | Issue label advisory-approved
|
Parse issue form, create advisory, sign feed, open PR, comment issue. |
| Skill Release | Skill tags + metadata PR changes | PR: version-parity + dry-run checks; tags: package/sign/publish release assets. |
| Deploy Pages | Successful CI/Release or manual dispatch | Discover releases, mirror assets, sign public advisories/checksums, deploy site. |
| Sync Wiki | Pushes to main touching wiki/** + manual dispatch |
Sync wiki/ into <repo>.wiki.git and generate Home.md from INDEX.md. |
| Step | Command | Outcome |
|---|---|---|
| Install deps | npm install |
Ready local environment. |
| Populate local catalog | ./scripts/populate-local-skills.sh |
public/skills/index.json and file checksums. |
| Populate local feed | ./scripts/populate-local-feed.sh --days 120 |
Updated local advisory feed copy. |
| Generate wiki llms exports | npm run gen:wiki-llms |
Updates public/wiki/llms.txt and per-page exports. |
| Run local gate | ./scripts/prepare-to-push.sh |
CI-like pass/fail signal. |
| Start dev UI | npm run dev |
Browser preview at local Vite endpoint. |
- Version bump and docs parity are enforced for PR/tag paths.
- Skill packaging includes SBOM-declared files and integrity manifests.
-
checksums.jsonis signed and immediately verified in workflow execution. - Optional publish-to-ClawHub job runs after successful GitHub release when configured.
- Older releases within same major line can be superseded/deleted by automation.
- NVD workflow determines incremental window from previous feed
updatedtimestamp. - Transform phase maps CVE metrics to severity/type and normalizes affected targets.
- Community advisory workflow creates deterministic IDs (
CLAW-YYYY-NNNN) from issue metadata. - Both advisory workflows update skill feed copies and signature companions.
# manual release prep for a skill
./scripts/release-skill.sh clawsec-feed 0.0.5
# then push tag if running in release branch mode# pages deploy depends on successful upstream workflow run
on:
workflow_run:
workflows: ["CI", "Skill Release"]
types: [completed]- Workflow permissions and secret scope misconfiguration can block signing/publishing.
- NVD/API transient failures may delay advisory freshness.
- Invalid tag naming or version mismatches halt release automation.
- Local scripts and CI can diverge if operator machine lacks expected binaries (
jq,openssl,clawhub).
- scripts/release-skill.sh
- scripts/prepare-to-push.sh
- scripts/populate-local-feed.sh
- scripts/populate-local-skills.sh
- scripts/generate-wiki-llms.mjs
- .github/workflows/ci.yml
- .github/workflows/poll-nvd-cves.yml
- .github/workflows/community-advisory.yml
- .github/workflows/skill-release.yml
- .github/workflows/deploy-pages.yml
- .github/workflows/pages-verify.yml
- .github/workflows/wiki-sync.yml
- .github/workflows/codeql.yml
- .github/workflows/scorecard.yml
- .github/actions/sign-and-verify/action.yml