소스 정보
- 저장소
- ucsandman/dashclaw-agent
- 최근 소스 활동
- 2026년 3월 17일 19:01
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ucsandman/dashclaw-agent --skill troubleshoot명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Integrate DashClaw SDK into any agent using the 4-step governance loop
Contribute to the DashClaw codebase — architecture, scaffolding, tests, CI
Register any agent (including this one) as a governed agent on a DashClaw instance
SOC 직업 분류 기준
SKILL.md 표시 중
| name | troubleshoot |
| description | Debug DashClaw errors, signal issues, and misconfigurations |
| license | MIT |
| metadata | {"author":"ucsandman","version":"1.0.0","category":"debugging"} |
Systematic diagnostics for common DashClaw errors, signal anomalies, and configuration issues.
Symptom: API calls return 401.
Checklist:
x-api-key header is set (not Authorization: Bearer)DASHCLAW_API_KEY environment variable is setcurl -H "x-api-key: $DASHCLAW_API_KEY" $DASHCLAW_BASE_URL/api/health
Root cause: DashClaw uses x-api-key header, not Bearer tokens. The middleware does timing-safe comparison first, then falls back to hash lookup.
Symptom: API calls return 403.
Checklist:
DASHCLAW_MODE env var./api/guard and getting 403, a policy is blocking the action — this is working as intended.org_default org blocks API access except onboarding routes. Create a real org first.Symptom: API calls return 429 Too Many Requests.
Defaults:
Fixes:
DASHCLAW_DISABLE_RATE_LIMIT=true for local developmentUPSTASH_REDIS_REST_URL for distributed rate limitingSymptom: API calls return 503.
Checklist:
DASHCLAW_API_KEY set? Missing key → 503 on protected routesDATABASE_URL valid? Check connection stringcurl $DASHCLAW_BASE_URL/api/health/setup page for readiness verification| Gotcha | Explanation |
|---|---|
| Client-sent org headers stripped | Middleware ALWAYS strips x-org-id, x-org-role, x-user-id from requests. Org context comes from the API key, never the client. |
| Two thread systems | Context threads (ct_*) and message threads (mt_*) are separate systems. Don't mix them. |
| org_default blocks APIs | Users in org_default are blocked from most endpoints. Create or join a real org first. |
| API key shown once | Keys are displayed exactly once at creation. If lost, generate a new one. |
| 2MB body size limit | Request bodies larger than 2MB are rejected. |
| HTTPS required in production | Non-HTTPS connections are rejected in production mode. |
| Canonical JSON for signatures | Agent identity signatures require deterministic JSON key ordering. |
| Rate limiting is per-IP | Not per-key or per-agent. Multiple agents on same IP share the limit. |
DashClaw computes 8 signal types. If signals are firing unexpectedly:
Trigger: >10 ungoverned actions/hour
Fix: Add guard checks before actions. Use claw.guard() before claw.createAction().
Trigger: Irreversible decisions with risk ≥70 and no approval Fix: Add approval gate policy for high-risk irreversible actions.
Trigger: >3 failures in 24 hours Fix: Check agent logic. Review failed actions in dashboard for patterns.
Trigger: Unresolved dependencies >48 hours old
Fix: Resolve or cancel open loops: claw.resolveOpenLoop(loopId, 'resolved', 'Fixed').
Trigger: ≥2 invalidated assumptions in 7 days Fix: Review assumptions. Agent may be operating on stale beliefs.
Trigger: Unvalidated assumptions >14 days old
Fix: Validate or invalidate old assumptions: claw.validateAssumption(id, true/false, reason).
Trigger: Actions with status running for >4 hours
Fix: Update stuck actions: claw.updateOutcome(actionId, { status: 'failed', output_summary: 'Timed out' }).
Trigger: Agent heartbeat lost >10 minutes
Fix: Ensure agent sends heartbeats: claw.heartbeat({ status: 'online' }).
node scripts/diagnose.mjs \
--base-url $DASHCLAW_BASE_URL \
--api-key $DASHCLAW_API_KEY
Runs 4 phases:
Add --json for programmatic output.
node scripts/validate-integration.mjs \
--base-url $DASHCLAW_BASE_URL \
--api-key $DASHCLAW_API_KEY \
--full # Include write tests
Validates:
Add --capture-setup-proof to generate proof for the dashboard.
.claude/settings.json has PreToolUse hook configuredBash|Edit|Write|MultiEditpython --versionDASHCLAW_HOOK_MODE — if set to observe, it logs but never blocksDASHCLAW_RISK_THRESHOLD — default is 60, lower it to catch morecurl -H "x-api-key: $KEY" $URL/api/policiesDASHCLAW_HOOK_MODE=observe first to understand what's being caught{tempdir}/dashclaw_last_action_{tool_use_id}DASHCLAW_BASE_URL and DASHCLAW_API_KEY are set for posttool