AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Github Actions Public Ci Diagnostics

skill-jinning6-noosphere-github-actions-public-ci-diagnostics · by JinNing6

Diagnose GitHub Actions CI or release workflow failures when full logs are inaccessible, especially public repositories where REST job logs return 403, pytest fails only on Linux runners, check annotations are sparse, PyPI Trusted Publishing fails, or Windows-only test fixtures break on ubuntu-latest.

No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add skill-jinning6-noosphere-github-actions-public-ci-diagnostics

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jinning6-noosphere-github-actions-public-ci-diagnostics)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
26d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Github Actions Public Ci Diagnostics? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

GitHub Actions Public CI Diagnostics

Use this when a remote GitHub Actions run fails but local tests pass, full job logs are unavailable, or the failure only appears on ubuntu-latest/matrix runners.

Workflow

  1. Check local rules first
  • Inspect project agent rules before changing files.
  • Run the same local quality gates the workflow claims to run.
  • Keep unrelated dirty files out of staging.
  1. Map the remote failure without secrets
  • Use public REST endpoints first:
  • /repos/{owner}/{repo}/actions/runs?head_sha={sha}
  • /repos/{owner}/{repo}/actions/runs/{run_id}/jobs
  • /repos/{owner}/{repo}/commits/{sha}/check-runs
  • /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations
  • If /actions/jobs/{job_id}/logs returns 403 Must have admin rights to Repository, do not guess from missing logs. Treat it as an observability gap.
  • Record the failing workflow, job, step, Python version, event, ref, and exact annotation text.
  1. Add public failure annotations before blind fixes
  • If annotations only say Process completed with exit code 1, add a small repository script that runs pytest, captures stdout/stderr as UTF-8, prints normal output, and emits a GitHub annotation such as ::error title=pytest failed::... on failure.
  • Use a workspace-local pytest temp dir and disable cache when sandbox or CI permissions may differ, for example python -m pytest -q -p no:cacheprovider --basetemp=.pytest-tmp-ci --tb=short --maxfail=1.
  • Wire both quality and publish workflows through the same helper so tag-push release failures are diagnosable too.
  • Add tests asserting the workflows call the helper and the helper contains annotation and step-summary markers.
  1. Reproduce by failure layer
  • First compare workflow order: install, lint, test, build, metadata, release boundary, publish.
  • If tests pass locally but fail on Linux, inspect OS-specific paths, case sensitivity, executable names, path separators, temp/cache directories, locale/encoding, and Python matrix versions.
  • For venv smoke tests, fixtures must create both Windows Scripts/python.exe plus Scripts/tool.exe and POSIX bin/python plus bin/tool when the production code chooses paths by os.name.
  • Do not treat a Windows-only fixture as proof that Linux CI is broken.
  1. Respect public tag immutability
  • If a public v* tag has already been pushed and later CI/release-path changes are needed, bump the package version and create a new tag. Do not move or reuse the old tag.
  • Rebuild artifacts and rerun release-boundary checks after every bump.
  1. Classify PyPI Trusted Publishing failures
  • If lint, tests, build, twine check, and release-boundary all pass, and pypa/gh-action-pypi-publish fails with invalid-publisher, treat it as PyPI project configuration.
  • Capture non-secret claims from the annotation: sub, repository, repository_owner, workflow_ref, ref, and environment.
  • Route maintainers to configure PyPI Trusted Publisher with the same repository owner/name, workflow filename/path, and environment. Do not add a stored PYPI_TOKEN as a shortcut.

Completion Standard

  • The remote CI failure is explained by a public annotation, a reproduced local condition, or an explicit external configuration blocker.
  • Local tests, lint, build, package metadata checks, and release-boundary checks pass after the fix.
  • Remote quality gates pass on the pushed commit.
  • Any remaining release blocker is named with exact public evidence and the next account-permission action.
  • Public tags are never moved; new release-path changes use a new version and tag.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.