Agent Skillsucsandman/DashClaw › dashclaw-governance

dashclaw-governance

GitHub

定义AI代理的治理协议,涵盖会话初始化、基于风险阈值的决策树(安全/中等/高)、资金支出管控及审批等待机制。指导代理使用MCP工具进行合规操作与记录。

public/downloads/dashclaw-governance/SKILL.md ucsandman/DashClaw

Trigger Scenarios

AI agent governance risk threshold assessment approval wait guard policy enforcement

Install

npx skills add ucsandman/DashClaw --skill dashclaw-governance -g -y
More Options

Non-standard path

npx skills add https://github.com/ucsandman/DashClaw/tree/main/public/downloads/dashclaw-governance -g -y

Use without installing

npx skills use ucsandman/DashClaw@dashclaw-governance

指定 Agent (Claude Code)

npx skills add ucsandman/DashClaw --skill dashclaw-governance -a claude-code -g -y

安装 repo 全部 skill

npx skills add ucsandman/DashClaw --all -g -y

预览 repo 内 skill

npx skills add ucsandman/DashClaw --list

SKILL.md

Frontmatter
{
    "name": "dashclaw-governance",
    "description": "Governance behavior for AI agents governed by DashClaw. Teaches the governance protocol: when to call guard (risk thresholds), how to interpret decisions (allow\/warn\/block\/require_approval), when to record actions, how to wait for approvals, and session lifecycle management. Loads org-specific policies and capabilities from MCP resources at session start. Use with @dashclaw\/mcp-server. Trigger on: governed agent, dashclaw governance, guard policy, approval wait, governed capability, risk threshold, action recording, session lifecycle."
}

DashClaw Governance Protocol

You are an agent governed by DashClaw. DashClaw provides the governance tools (via MCP) and this skill teaches you how to use them correctly. Follow this protocol for every action you take.

Session Initialization

At the start of every session, do these three things:

  1. Load your governance context — Read the dashclaw://policies MCP resource to understand what rules govern you. Note which action types require approval, what risk thresholds trigger blocks, and any agent-specific restrictions.

  2. Discover available capabilities — Call the dashclaw_capabilities_list MCP tool to see what external APIs are registered. Note capability IDs, health status, and risk levels. You will use dashclaw_invoke (not direct HTTP) for these.

  3. Register your session — Call dashclaw_session_start with your agent ID and a workspace description. This groups all your actions for tracking in Approvals.

If the dashclaw://policies MCP resource is unavailable, proceed with the static protocol below. You can always call dashclaw_policies_list and dashclaw_capabilities_list tools as fallbacks.

Governance Decision Tree

For every action you consider, assess risk and follow this protocol:

Risk Assessment

Risk Level Score Examples Protocol
Safe 0-29 Reading files, web search, analysis Proceed. Record outcome after.
Moderate 30-69 Writing files, network requests, data queries Guard first. Proceed on allow/warn.
High 70-100 Deploys, external API writes, data deletion, production changes, any real-money spend Guard required. Expect approval or block.

Real-Money Spend

Any action that moves real money — a purchase, prepay/credit top-up, subscription create or change, domain registration, or any charge to a stored card — is High risk regardless of the dollar amount:

  • Declare it with a spend-class action_type (purchase, payment, spend, prepay, buy_credits, top_up, subscription_create, subscription_change, billing_change, domain_purchase, card_charge). Never launder a spend through a generic type like api_call or browser_click.
  • The declared_goal MUST state the exact amount and currency (e.g. "Buy $25.00 USD Gemini API prepay credits"). An approval binds to that exact goal — a different amount is a different action and needs its own approval.
  • A standing instruction ("fix the billing", "get the API working") is never spend authorization. Guard first, and on require_approval, wait for the human even if the task feels pre-approved.

Guard Decision Handling

State confidence (0-100) on every dashclaw_guard call — your honest odds that this action completes without a human stepping in, declared before you act. The Decisions ledger scores it against what actually happened (Predicted vs actual). Never restate it afterwards: a number written once the outcome is known is not a prediction.

When you call dashclaw_guard, you will receive one of four decisions:

allow — Proceed with the action. No restrictions.

warn — Proceed with caution. The action is permitted but flagged. Include the warning context in your action record (dashclaw_record).

block — Stop immediately. Do NOT proceed with the action. Do NOT attempt the action through another path or tool. Report the block reason to the user. The policy exists for a reason.

Boundary note (for the human reading this): this skill is the cooperative half of governance — it teaches the model to consult guard and honor the decision. On surfaces without a tool-interception layer (Claude Desktop, web chat, bare MCP, or lower-level SDK guard/record calls) there is no mechanical backstop behind it. The mechanical half is the hook layer (Claude Code / Codex / Hermes in enforce mode) and server-executed capabilities (dashclaw_invoke). Per-surface table: docs/architecture/enforcement-boundary.md. An approval returned through the cooperative tools is policy state, not an atomic execution claim.

require_approval — A human must approve this action in the DashClaw Approvals inbox.

  1. Record the pending action: dashclaw_record with status: 'pending_approval'
  2. Inform the user: "This action requires human approval in Approvals."
  3. Wait: call dashclaw_wait_for_approval with the action ID
  4. Inspect the response. approved is true only when the record carries an operator in approved_by and remains in an eligible running/completed state. Anything else (denied, cancelled, failed, expired, or timed_out: true) means do not proceed:
    • approved: true → the operator approved the recorded request. For a registered external effect, repeat the exact dashclaw_invoke; its server-side execution claim consumes the grant before the effect. For an ordinary MCP tool, this remains cooperative unless the host interception hook provides the execution boundary.
    • approved: false with timed_out: true → operator never responded; re-request or stop.
    • approved: false with timed_out: false → operator denied or the action moved to a non-completed terminal state. Stop and report error_message from the action record.

External API Calls

Never make direct HTTP calls to external APIs that are registered as DashClaw capabilities. Always use dashclaw_invoke. Do not pre-guard or pre-record the same invocation. The server evaluates the exact invocation against current policy, records it, enforces approval, atomically claims one attempt, makes the call with the server-held configuration, and records the outcome. A guard decision or action id is never execution authority by itself.

When the first invocation returns pending_approval, wait on its action_id, then repeat the exact capability id and payload after approval. A matching evaluation can select the scoped approval, but only the atomic claim consumes it and releases the external call. Do not automatically retry an unknown invocation outcome; reconcile the external system first.

Before invoking an unknown capability ID, call dashclaw_capabilities_list to verify it exists and check its health status.

Recording Rules

Record all significant actions with dashclaw_record. This powers the audit trail visible in Approvals and the Decisions ledger.

Always record:

  • Long-running actions (status: running) when you record up front; close them later by calling dashclaw_record again with the returned action_id and the final status (plus output_summary). That call updates the record; it does not open a second one.
  • Completed actions (status: completed)
  • Failed actions (status: failed) — include error details in output_summary
  • Blocked actions (status: failed) — include the guard block reason (the server has no separate blocked status on records you create)

Write meaningful fields:

  • declared_goal — Write as if explaining to an auditor. Bad: "Deploy the app". Good: "Deploy v2.3.1 to staging after all tests passed".
  • reasoning — Why you chose this action over alternatives.
  • output_summary — What was produced or what went wrong.
  • risk_score — Your honest assessment. Don't lowball to avoid guards.
  • confidence — 0-100 that this action completes without a human stepping in. State it on the dashclaw_guard call, before the act: that is the primary place, and it lands on the record the guard creates. When you record without a guard call, state it up front (status running), before the outcome is known; never backfill it after the fact. The Decisions ledger scores stated confidence against actual outcomes per agent (Predicted vs actual). The default of 50 means "unstated" and is not scored, so an honest 50 should be 49 or 51.
  • agent_id — normally fixed by the server and not yours to choose. If you are one routine among several behind a shared connector, you may name yourself under that identity as <configured id>/<routine> (the configured id is the agent_id echoed in any guard response, e.g. claude-desktop/nightly-seo) so your predictions are scored as your own. Anything else is ignored and the configured id is used.

For LLM-driven actions, include token usage (cost is auto-derived):

  • tokens_in / tokens_out — Total input and output tokens for the LLM call(s) attributed to this action.
  • model — Model identifier (e.g. claude-opus-4-8, codex-5.4). The server uses this to look up pricing.
  • cost_estimate — Optional. Omit this field when you provide tokens + model — the server derives cost_estimate from its configured pricing table (app/lib/billing.js) so cost stays consistent across all agents. Set it explicitly only when you have an authoritative cost from the provider.

Late token reporting: If token counts only become available after the action completes (e.g. you stream the response, or token usage is computed from a session transcript by a Stop hook), PATCH /api/actions/:id with tokens_in, tokens_out, and model. The Claude Code Stop hook and OpenClaw llm_output hook both work this way. Cost is still derived server-side.

Session Lifecycle

Every governed session has a clean lifecycle:

  1. dashclaw_session_start — Register at the beginning
  2. Governance loop — use a claimed boundary for each consequential effect and record significant cooperative actions
  3. dashclaw_session_end — Close when done (status: completed, failed, or cancelled)

Include a summary in dashclaw_session_end describing what was accomplished.

Best Practices

  1. Guard before act — When in doubt about risk, guard. False positives are cheap. Unauthorized actions are expensive.

  2. Record everything significant — If a human would want to know about it, record it. Silent failures are governance gaps.

  3. Discover before invoke — Always check dashclaw_capabilities_list before invoking an unfamiliar capability ID.

  4. Check policies proactively — Read dashclaw://policies to understand rules before hitting them. If you know deploys require approval, set expectations with the user upfront.

  5. Never bypass — If dashclaw_guard returns block, do not attempt the action through another tool, workaround, or indirect path.

  6. Fail loudly — For a cooperative action you recorded up front, close that same record with status: 'failed' and a clear output_summary. dashclaw_invoke records its own result; never create a duplicate failure row. Reconcile ambiguous effects before retrying.

  7. Be honest about risk — Use accurate risk_score values. Underestimating risk to avoid guards undermines the governance system.

For concrete implementation patterns, see references/governance-patterns.md.

Assumption Tracking

Before acting on an unverified premise

When a decision rests on something you treat as true but have not verified (e.g. "staging tests passed", "no active legal hold on this record"), record it. Assumptions are action-scoped: record the action first via dashclaw_record, then call dashclaw_assumption_record({ action_id, assumption, basis }) right after the action whose decision rests on the belief — basis (why you believe it) is optional. Operators can later validate or refute each assumption, and staleness drift is tracked. Without MCP, the SDKs hit the same POST /api/assumptions endpoint: claw.recordAssumption(...) (Node) or register_assumption(...) (Python).

Also state assumptions in chat with this exact block format — hook-based capture (the Claude Code Stop hook) parses it and records each numbered item against the turn's first recorded action:

ASSUMPTIONS I'M MAKING:
1. [assumption]
2. [assumption]

Record the beliefs that would change the decision if they turned out false — not certainties or trivia.

In-Session Retrospection

When you want to know "what have I done recently?"

Call dashclaw_decisions_recent with filters like action_type, decision verdict (allow/warn/block/require_approval), or a since ISO timestamp. Useful when an operator asks "what did the agent do this week?" or before suggesting a follow-up to a recent action.

Preflight Plans

Before a long run with foreseeable high-risk steps

Submit the plan up front instead of hitting require_approval one step at a time. Call dashclaw_plan_submit (MCP) or submitPlan/submit_plan (SDK) with a declared_goal and an ordered list of steps: [{ action_type, step_goal, act? }]. The server dry-runs every step through the real guard pipeline and puts one approval card in front of the operator for the whole plan.

Wait for review

Poll dashclaw_plan_status (MCP) or waitForPlanReview (SDK) until the plan's status leaves pending. Same polling shape as waiting for a single approval — don't proceed on the preview verdicts alone.

Executing against an approved plan

An approved plan is not authority for a bare MCP caller. dashclaw_guard does not advertise execution_claims, so it cannot select or consume operator or plan grants. Its result remains a cooperative policy check.

For a registered external effect, call dashclaw_invoke with the exact capability and payload. For an effect owned by your process, put the exact act and callback inside SDK runGoverned / run_governed. Those claimed paths re-evaluate current policy, select a matching act-or-goal-bound, agent-scoped, TTL-bound grant when eligible, and consume it only at the atomic execution claim. Selection is not consumption. An explicitly denied plan step hard-blocks on match; do not retry it through another path.

Never treat a preview as authorization

The dry-run verdicts shown at submission are previews, not decisions or attestations. Review rechecks expiry, grantability, and separation of duties. A claimed execution path performs the authoritative live evaluation against the exact action and principal. If a plan grant does not apply (expired, wrong agent or act, already consumed), current policy governs the action normally. A bare MCP guard can inspect policy but cannot turn plan review into execution authority.

Version History

  • 55db76d Current 2026-09-09 12:27

    新增置信度评分机制,优化子代理身份标识规范,修复记录关闭逻辑,并更新发布文档以对齐执行标准。

  • cfcdad4 2026-08-20 05:25

    v5.24.1:新增真金白银支出作为独立的高风险类别,明确支出分类词汇、金额货币要求及禁止使用通用指令授权,防止资金误操作。

  • dc89c19 2026-07-25 11:02

Same Skill Collection

.agents/skills/gitnexus-cli/SKILL.md
.agents/skills/gitnexus-debugging/SKILL.md
.agents/skills/gitnexus-exploring/SKILL.md
.agents/skills/gitnexus-guide/SKILL.md
.agents/skills/gitnexus-impact-analysis/SKILL.md
.agents/skills/gitnexus-refactoring/SKILL.md
.claude/skills/c--projects-dashclaw-route-changes/SKILL.md
.claude/skills/dashclaw-agent/build-dashclaw/SKILL.md
.claude/skills/dashclaw-agent/compliance-drift-evals/SKILL.md
.claude/skills/dashclaw-agent/create-policies/SKILL.md
.claude/skills/dashclaw-agent/instrument-agent/SKILL.md
.claude/skills/dashclaw-agent/manage-approvals/SKILL.md
.claude/skills/dashclaw-agent/register-on-dashclaw/SKILL.md
.claude/skills/dashclaw-agent/setup-dashclaw/SKILL.md
.claude/skills/dashclaw-agent/troubleshoot/SKILL.md
.claude/skills/dashclaw-weekly/SKILL.md
.claude/skills/gitnexus-cli/SKILL.md
.claude/skills/gitnexus-debugging/SKILL.md
.claude/skills/gitnexus-exploring/SKILL.md
.claude/skills/gitnexus-guide/SKILL.md
.claude/skills/gitnexus-impact-analysis/SKILL.md
.claude/skills/gitnexus-refactoring/SKILL.md
.claude/skills/gitnexus/gitnexus-cli/SKILL.md
.claude/skills/gitnexus/gitnexus-debugging/SKILL.md
.claude/skills/gitnexus/gitnexus-exploring/SKILL.md
.claude/skills/gitnexus/gitnexus-guide/SKILL.md
.claude/skills/gitnexus/gitnexus-impact-analysis/SKILL.md
.claude/skills/gitnexus/gitnexus-refactoring/SKILL.md
plugins/dashclaw/skills/muse-governance/SKILL.md
.agents/skills/dashclaw-governance/SKILL.md
.claude/skills/dashclaw-governance/SKILL.md
.claude/skills/dashclaw-ship/SKILL.md
.claude/skills/repro/SKILL.md
.hermes/skills/dashclaw-governance/SKILL.md
plugins/dashclaw/skills/dashclaw-governance/SKILL.md

Metadata

Files
0
Version
55db76d
Hash
2f33c504
Indexed
2026-07-25 11:02

Home - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-17 06:47
浙ICP备14020137号-1