Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

execution-guardian执行监护人

Agent Skill

execution-guardian 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

312

周安装

13

GitHub Stars

1

下载量

104
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:execution-guardian(执行监护人)
来源仓库:https://github.com/cleanexpo/nodejs-starter-v1
仓库路径:skills/execution-guardian
安装命令:
npx skills add https://github.com/cleanexpo/nodejs-starter-v1 --skill execution-guardian
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cleanexpo/nodejs-starter-v1 --skill execution-guardian

简介

执行监护人技能提供预操作风险评估与安全验证机制。

  • 自动识别危险操作类型,生成必要检查项与风险评分。
  • 适用于数据库变更、文件删除等高风险场景的防护层。
  • 可与代码审查工具协同,形成多层级安全保障体系。
  • execution-guardian 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Execution Guardian - Pre-Execution Governance

Dynamic validation gates and risk assessment for operations that could harm system integrity. Evaluates blast radius, reversibility, and confidence before allowing execution to proceed.

Description

Provides a pre-execution safety layer that auto-detects operation types, generates prerequisite validation gates, scores risk and confidence, and produces structured error output when operations are blocked. Complements the Council of Logic (code quality) with operation safety assessment.

When to Apply

Positive Triggers

  • Destructive operations: Database migrations, file deletions, git reset, DROP TABLE, rm -rf
  • Multi-layer changes: Modifications spanning frontend + backend + database in a single operation
  • Auth/security changes: JWT secret rotation, RBAC permission changes, CORS policy updates, OAuth config
  • Payment/billing changes: Pricing logic, subscription tiers, billing calculations
  • API contract changes: Breaking changes to endpoint signatures, response shapes, error codes
  • Deployment operations: Production deployments, infrastructure changes, environment variable updates
  • Data migrations: Schema changes with existing data, column renames, type changes
  • User mentions: "risk", "safe to proceed", "prerequisite", "validation gate", "confidence"

Negative Triggers (Delegate to Other Systems)

  • Code quality review → council-of-logic
  • Phase sequencing and workflow → genesis-orchestrator
  • Architecture drift or dead code → system-supervisor
  • Runtime error handling → error-taxonomy
  • Exploration or read-only operations → No governance needed (EXPLORATION mode)
  • Pure strategy/planning → No gates needed (STRATEGY mode)

Dynamic Validation Gates

Operation Type Auto-Detection

Scan the proposed operation and classify it into one or more operation types:

Operation TypeDetection SignalsDefault Risk
DATABASE_MIGRATIONAlembic revision, ALTER TABLE, DROP, schema changesHIGH
AUTH_CHANGEJWT config, RBAC rules, password hashing, session managementHIGH
API_CONTRACT_CHANGEEndpoint signature change, response model change, status code changeMEDIUM
DEPLOYMENTDocker push, vercel deploy, environment variable changesHIGH
DESTRUCTIVE_FILE_OPrm -rf, git reset --hard, git clean -f, file overwritesHIGH
SECURITY_CHANGECORS policy, CSP headers, rate limit config, secret rotationHIGH
MULTI_LAYER_CHANGEChanges in 2+ of: apps/web/, apps/backend/, scripts/, docker-compose.ymlMEDIUM
DEPENDENCY_CHANGEpnpm add, uv add, major version bumps, removing packagesLOW
CONFIG_CHANGEnext.config, pyproject.toml, tsconfig.json, .env filesLOW

Gate Generation

For each detected operation type, generate prerequisite gates. Gates are checks that must pass before execution proceeds.

DATABASE_MIGRATION Gates

GATE: Backup exists or migration is reversible
  CHECK: Verify downgrade() function exists in Alembic revision
  BLOCKING: YES

GATE: No data loss in migration
  CHECK: Scan for DROP COLUMN, DROP TABLE, ALTER TYPE without data preservation
  BLOCKING: YES

GATE: Migration tested locally
  CHECK: uv run alembic upgrade head (on local database)
  BLOCKING: YES

AUTH_CHANGE Gates

GATE: No secret exposure in code
  CHECK: Grep for hardcoded secrets, JWT keys, API keys in diff
  BLOCKING: YES

GATE: Existing sessions handled
  CHECK: Verify session invalidation strategy for JWT secret rotation
  BLOCKING: YES

GATE: Auth tests pass
  CHECK: uv run pytest tests/test_auth.py
  BLOCKING: YES

API_CONTRACT_CHANGE Gates

GATE: Breaking change documented
  CHECK: Verify changelog entry or API version bump
  BLOCKING: NO (warning only)

GATE: Frontend contract updated
  CHECK: Verify corresponding Zod schema change in apps/web/
  BLOCKING: YES

GATE: API tests pass
  CHECK: uv run pytest tests/test_api_*.py
  BLOCKING: YES

DESTRUCTIVE_FILE_OP Gates

GATE: Files are not uncommitted work
  CHECK: git status — verify target files are committed or backed up
  BLOCKING: YES

GATE: No shared resources affected
  CHECK: Verify files are not imported/referenced by other modules
  BLOCKING: YES

DEPLOYMENT Gates

GATE: All tests pass
  CHECK: pnpm turbo run test
  BLOCKING: YES

GATE: Type checks pass
  CHECK: pnpm turbo run type-check
  BLOCKING: YES

GATE: No secrets in build output
  CHECK: Scan build artifacts for .env patterns
  BLOCKING: YES

SECURITY_CHANGE Gates

GATE: Change follows OWASP guidelines
  CHECK: Reference input-sanitisation or csrf-protection skill
  BLOCKING: NO (advisory)

GATE: Security tests pass
  CHECK: uv run pytest tests/ -k "security or auth"
  BLOCKING: YES

MULTI_LAYER_CHANGE Gates

GATE: API contract consistency
  CHECK: Backend response models match frontend Zod schemas
  BLOCKING: YES

GATE: Cross-layer tests pass
  CHECK: pnpm turbo run test (full suite)
  BLOCKING: YES

DEPENDENCY_CHANGE Gates

GATE: No known vulnerabilities
  CHECK: pnpm audit / uv pip audit
  BLOCKING: NO (warning for non-critical)

GATE: Peer dependency compatibility
  CHECK: pnpm install --dry-run succeeds
  BLOCKING: YES

CONFIG_CHANGE Gates

GATE: Config syntax valid
  CHECK: Validate JSON/TOML/YAML syntax
  BLOCKING: YES

GATE: Environment variables documented
  CHECK: New variables added to .env.example
  BLOCKING: NO (warning)

Risk Scoring Engine

Three Dimensions

Each operation is scored across three dimensions:

DimensionLOW (1)MEDIUM (2)HIGH (3)
Blast RadiusSingle file/functionSingle service/layerMultiple services or shared infrastructure
ReversibilityEasily undone (git revert, config rollback)Requires manual steps (data restore, migration rollback)Irreversible or extremely costly to reverse
ConfidenceWell-understood pattern, high test coveragePartially tested, some unknownsNovel pattern, low coverage, complex domain

Composite Risk Calculation

composite_score = max(blast_radius, reversibility, confidence)
Composite ScoreRisk LevelRequired Response
1LOWProceed. Log the operation.
2MEDIUMRequire user approval before execution. State the risk clearly.
3HIGHMandatory review. Require rollback plan. Block until approval received.

Risk-Appropriate Responses

LOW Risk:

[GUARDIAN: LOW RISK] Proceeding with {operation}.
Gates passed: {list}. No rollback plan required.

MEDIUM Risk:

[GUARDIAN: MEDIUM RISK] {operation} requires approval.
Blast radius: {assessment}
Reversibility: {assessment}
Confidence: {assessment}
Approval required before proceeding.

HIGH Risk:

[GUARDIAN: HIGH RISK] {operation} blocked pending review.
Blast radius: {assessment}
Reversibility: {assessment}
Confidence: {assessment}

Rollback Plan:
1. {step 1}
2. {step 2}
3. {step 3}

Approval required. Respond with "proceed" to continue.

Confidence Scoring

Confidence is scored 0-100% based on four factors:

FactorWeightHigh ConfidenceLow Confidence
Pattern Novelty30%Well-known pattern used elsewhere in codebaseFirst-time pattern, no precedent
Test Coverage30%Relevant tests exist and passNo tests cover this path
Domain Complexity20%Simple CRUD, config changeAuth, payment, distributed state
Change Scope20%Single file, < 50 lines5+ files, 200+ lines

Confidence Thresholds

RangeLabelAction
80-100%HighProceed with standard gates
50-79%ModerateRequire explicit approval
0-49%LowRecommend spike/prototype first, or request additional review

Structured Error Format

When the Guardian blocks an operation, output uses this format. This is distinct from error-taxonomy (which handles runtime API errors). Guardian errors are governance-level blocking decisions.

ERROR: {What failed or was blocked}
CAUSE: {Why the gate failed or risk is too high}
RISK:  {LOW | MEDIUM | HIGH} — {one-line risk summary}
FIX:   {Specific action to resolve the block}
BLOCKING: {YES | NO}

Examples

See references/error-format.md for complete examples per operation type.

BLOCKING Classification

BLOCKINGMeaningWhen Used
YESOperation cannot proceed until resolvedData loss risk, security vulnerability, test failure
NOWarning only — operation may proceedDocumentation missing, advisory best practice

Self-Healing Retry

When BLOCKING: NO and risk is LOW:

  1. Apply the suggested FIX automatically
  2. Re-run the failed gate
  3. If pass → proceed
  4. If fail again → escalate to BLOCKING: YES

Self-healing is never applied to:

  • BLOCKING: YES gates
  • MEDIUM or HIGH risk operations
  • Security-related gates
  • Database migration gates

Integration Points

Council of Logic

Council MemberFeeds IntoHow
Turing (complexity)Confidence scoringHigh complexity = lower confidence
Von Neumann (architecture)Blast radius assessmentMulti-service = higher blast radius
Shannon (compression)Guardian output formatStructured, compressed error format

Boundary: Council validates *code quality*; Execution Guardian validates *operation safety*.

Genesis Orchestrator

  • Phase boundaries trigger gate re-evaluation
  • Guardian respects phase-locked execution (does not skip ahead)
  • Section completion gates align with Guardian's deployment gates

Verification Agent

  • LOW risk → standard verification
  • MEDIUM risk → verification + regression tests
  • HIGH risk → comprehensive verification + manual review recommendation

Execution Modes

  • EXPLORATION: Guardian off
  • BUILD: Standard gates, approval for MEDIUM+
  • SCALE: Full gates, rollback plans required for MEDIUM+
  • STRATEGY: Guardian off

Anti-Patterns

PatternProblemCorrect Approach
Gating every file editOver-governance, kills momentumOnly gate destructive/multi-layer/security ops
Skipping gates because "it's just a small change"Small changes to auth/security can be catastrophicGate based on operation type, not change size
Blocking on advisory warnings in BUILD modeMomentum lossAdvisory = BLOCKING: NO, proceed with warning
Applying self-healing to security gatesCould mask real vulnerabilitiesSelf-healing only for LOW risk, non-security gates
Generating rollback plans for LOW risk opsToken waste, over-engineeringRollback plans for HIGH risk only (MEDIUM in SCALE mode)

Checklist

  • Operation type correctly auto-detected
  • Prerequisite gates generated for all detected types
  • Risk scored across blast radius, reversibility, and confidence
  • Composite risk level drives appropriate response
  • Structured error format used for all blocks (ERROR / CAUSE / RISK / FIX / BLOCKING)
  • Self-healing only applied to BLOCKING: NO + LOW risk
  • Council of Logic feeds into confidence and blast radius
  • Mode-appropriate governance (BUILD vs SCALE intensity)
  • Rollback plan present for HIGH risk operations

Response Format

[AGENT_ACTIVATED]: Execution Guardian
[MODE]: {EXPLORATION | BUILD | SCALE | STRATEGY}
[OPERATION]: {detected operation type(s)}
[RISK]: {LOW | MEDIUM | HIGH}
[STATUS]: {gates_passed | approval_required | blocked}

{gate results, risk assessment, or structured error}

[NEXT_ACTION]: {proceed | await approval | apply fix | escalate}

Australian Localisation (en-AU)

  • Date Format: DD/MM/YYYY
  • Currency: AUD ($)
  • Spelling: colour, behaviour, optimisation, analyse, centre, authorisation
  • Tone: Direct, professional — state risks clearly without hedging

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.02%
按下载量换算37

Claude

31.09%
按下载量换算32

Cursor

19.81%
按下载量换算21

Gemini CLI

9.73%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills