用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oimiragieo/agent-studio --skill verification-worker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Agent frontmatter enhancements — disallowedTools, mcpServers scoping, fork_eligible field
Context management — pre-compact persistence, threshold alignment, microcompact/circuit breaker detection
Hook enhancements — updatedInput for bash safety prefixes, suppressOutput for verbose blocks, denial-based routing feedback
基于 SOC 职业分类
| name | verification-worker |
| description | Verifies system integrity after fixes, runs regression tests, identifies remaining issues |
NOTE: Startup and cleanup are handled by worker-base. This skill defines the WORK PROCEDURE.
Use for features that verify system behavior after routing, hierarchical, and creator fixes are complete. This includes memory system verification, session handoff testing, hook enforcement validation, code indexing verification, cross-area flow testing, and full regression testing.
Read the feature description — it specifies which subsystem to verify and what assertions to validate.
Run baseline tests first — Before investigating anything:
pnpm test
pnpm test:framework
pnpm validate:routing
Record results. If baseline tests fail, document failures as discovered issues.
Verify the specific subsystem — Follow the feature's verification steps:
For memory verification:
pnpm test:framework with memory-specific testspnpm metrics:memory:slo:ci for memory SLO validationpnpm metrics:memory:audit for write auditFor session handoff:
For hook enforcement:
pnpm validate:hooks:docspnpm validate:routingJSON.parse usage (should use safeParseJSON)For code indexing:
pnpm test:code-indexingFor cross-area flows:
pnpm integration:headlessWrite missing tests — If the subsystem lacks test coverage for the assertions, write tests using node:test.
Document findings — For each assertion being verified:
Run full regression — After all verifications:
pnpm test
pnpm validate:full:parallel
pnpm integration:headless
{
"salientSummary": "Verified memory system end-to-end: STM write/read round-trip works, MTM consolidation functions correctly, LTM promotion works, capacity enforcement caps MTM at 10 sessions. All 4 memory assertions PASS. Found 1 discovered issue: evictStaleLTMFiles() uses hardcoded 30-day retention instead of configurable threshold.",
"whatWasImplemented": "Added 6 new memory verification tests covering STM round-trip, MTM consolidation, LTM promotion, capacity enforcement, memory injection budget, and graceful degradation. All existing memory tests continue to pass.",
"whatWasLeftUndone": "",
"verification": {
"commandsRun": [
{
"command": "pnpm test:framework",
"exitCode": 0,
"observation": "All framework tests pass including memory tests"
},
{
"command": "pnpm metrics:memory:slo:ci",
"exitCode": 0,
"observation": "Memory SLOs within bounds: write p95 < 120ms, lock wait p95 < 40ms"