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

Self Check

skill-hhhyyyy99-prot-skills-self-check · by hhhyyyy99

Run local production/PR self-checks before pushing or submitting a PR. Mirrors pre-push checks and the GitHub PR CI checks where practical. Use when asked to "自检", "生产门禁自检", "跑门禁", "pre-push check", "PR checks", "before push", or "before PR".

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

Install

$ agentstack add skill-hhhyyyy99-prot-skills-self-check

✓ 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-hhhyyyy99-prot-skills-self-check)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo 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 Self Check? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Self Check

Runs the repository's local production gate and the PR CI checks that can be reproduced locally. Use this before pushing a branch or opening a PR.

When to Use

  • Before submit-pr or any request to push changes
  • After committing feature, fix, refactor, test, docs, config, or release-prep changes
  • When the user asks to run "自检", "生产门禁", "PR 检测", or "pre-push"
  • When checking whether the current branch is ready for GitHub CI

What PR Runs

GitHub PR checks are defined in .github/workflows/ci.yml and .github/workflows/ai-review.yml.

| PR Check | Local equivalent | Notes | | ----------------------------------------------------------------------------- | ----------------------------------- | -------------------------------------------------------- | | Frontend Checkspnpm app:check | pnpm app:check | Verifies app metadata sync | | Frontend Checkspnpm test | pnpm test | Vitest frontend/script suite | | Frontend Checkspnpm build | pnpm build | Runs app:sync, tsc, and Vite build | | Backend Checkspnpm app:check | Already covered by pnpm app:check | CI runs it again in backend job | | Backend Checkspnpm build | Already covered by pnpm build | Builds frontend assets for Tauri context | | Backend Checkscargo fmt --check | cd src-tauri && cargo fmt --check | Requires Rust toolchain | | Backend Checkscargo clippy --all-targets --all-features -- -D warnings | Same command locally | Requires system Tauri/WebKit dependencies on Linux | | Backend Checkscargo test --all-features | Same command locally | Requires Rust toolchain | | ai-review | Do not run locally by default | Requires PR context, GitHub token, and AI review secrets |

Local pre-push gate is defined in .husky/pre-push:

pnpm test
pnpm lint
pnpm format:check
pnpm test:tokens

Prerequisites

  • Clean working tree is preferred; if dirty, report the changed files before running checks.
  • Dependencies are installed with pnpm install.
  • Rust toolchain is available for backend checks.
  • On Linux, backend clippy/tests may require the same system packages CI installs:
  • libwebkit2gtk-4.1-dev
  • libgtk-3-dev
  • libayatana-appindicator3-dev
  • librsvg2-dev
  • patchelf

Workflow

Execute these phases in order. Report each phase result before moving on if it fails.


Phase 1 — Inspect Current State

  1. Check branch and working tree:

``bash git status --short --branch ``

  1. Inspect recent commits when relevant:

``bash git log --oneline -5 ``

  1. If the working tree is dirty, continue only if the user asked to check the current local state. Otherwise, ask whether to commit/stash first.

Output: branch name, clean/dirty state, and whether checks are being run against committed-only or working-tree changes.


Phase 2 — Run Local Pre-Push Gate

Run exactly the commands from .husky/pre-push:

pnpm test
pnpm lint
pnpm format:check
pnpm test:tokens

A convenient single command is:

pnpm test && pnpm lint && pnpm format:check && pnpm test:tokens

Notes:

  • pnpm lint may report warnings. Warnings are acceptable if it exits successfully and reports 0 errors.
  • Do not fix unrelated lint warnings during self-check. Report them separately if they are relevant.

Output: pass/fail for tests, lint, format, and token consistency.


Phase 3 — Run PR Frontend CI Equivalents

Run the frontend CI commands that are not already fully covered by pre-push:

pnpm app:check
pnpm build

Notes:

  • pnpm build already runs pnpm app:sync, then tsc, then vite build.
  • pnpm test was already covered in Phase 2; do not rerun it unless a previous command changed files.

Output: app metadata check and frontend build result.


Phase 4 — Run PR Backend CI Equivalents

Run the backend CI commands:

cd src-tauri && cargo fmt --check
cd src-tauri && cargo clippy --all-targets --all-features -- -D warnings
cd src-tauri && cargo test --all-features

Prefer separate commands so failures are easy to identify. Avoid changing directories permanently; run commands with an explicit working-directory pattern when possible.

If local Linux system dependencies are missing, report the blocker and the CI packages required. Do not install system packages unless the user explicitly asks.

Output: Rust format, clippy, and test results.


Phase 5 — Optional Runtime Verification

For UI changes, run the app and observe the changed surface before claiming feature-level readiness.

Use the run or verify skill if available, otherwise use the project commands:

pnpm dev
# or
pnpm tauri:dev

Only do this when the user asked for runtime verification or the change is UI/interaction behavior where tests/builds are not enough.

Output: what was launched, what user-visible behavior was observed, and any platform not available locally.


Phase 6 — Report

Report in this format:

Self-check result: PASS | FAIL | BLOCKED

Branch: 
Working tree: clean | dirty ()

Checks:
- pre-push: PASS | FAIL
  - pnpm test: ...
  - pnpm lint: ...
  - pnpm format:check: ...
  - pnpm test:tokens: ...
- frontend PR CI: PASS | FAIL
  - pnpm app:check: ...
  - pnpm build: ...
- backend PR CI: PASS | FAIL | BLOCKED
  - cargo fmt --check: ...
  - cargo clippy ...: ...
  - cargo test --all-features: ...
- ai-review: not run locally ()

Notes:
- 

Quick Reference

Full local PR self-check:

pnpm test && pnpm lint && pnpm format:check && pnpm test:tokens
pnpm app:check
pnpm build
(cd src-tauri && cargo fmt --check)
(cd src-tauri && cargo clippy --all-targets --all-features -- -D warnings)
(cd src-tauri && cargo test --all-features)

Pre-push only:

pnpm test && pnpm lint && pnpm format:check && pnpm test:tokens

Frontend PR CI only:

pnpm app:check && pnpm test && pnpm build

Backend PR CI only:

pnpm app:check && pnpm build
(cd src-tauri && cargo fmt --check)
(cd src-tauri && cargo clippy --all-targets --all-features -- -D warnings)
(cd src-tauri && cargo test --all-features)

Error Handling

  • pnpm install --frozen-lockfile would fail in CI: if lockfile/package changes are present, run or recommend pnpm install --frozen-lockfile before PR.
  • pnpm app:check fails: run pnpm app:sync, inspect metadata changes, and commit them if expected.
  • pnpm build fails in TypeScript: fix type errors before rerunning.
  • cargo fmt --check fails: run cd src-tauri && cargo fmt, then review and commit formatting changes.
  • cargo clippy fails: fix the reported warning/error; CI treats all clippy warnings as errors.
  • Linux Tauri dependency missing: report the missing package and the CI install list; ask before installing system packages.
  • AI review not runnable locally: this is expected unless PR number, GitHub token, and AI review secret environment are available.

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.