用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/LangeVC/skillweave --skill skillweave-observe命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Create structured PRD (Product Requirements Document) through guided interview. Adapts Ralph Loop concepts for multi-agent AI development. Creates blueprint for promptchain and releasechain workflows.
Multi-Model LLM Council — Deliberation, Peer Review, and Chairman Synthesis with Web Search and Faigate Routing
Analyze design briefs, derive UX principles and design tokens, and evaluate implementation quality.
正在显示 SKILL.md
| facade | true |
| experimental | true |
| name | skillweave-observe |
| description | Execution Reports, Timing, Events, Memory, Summary, Health — Read-Only Observability |
| argument-hint | command="[report|timing|events|memory|summary|health]" session="[id]" level="[level]" |
Read-only observability for SkillWeave execution sessions.
Inspect reports, timing data, event streams, memory drawers, health status, and session summaries from past or active runs. No side effects — observation never modifies state.
Invoke the skill by its name with arguments. The skill is host-neutral; no executable prefix is required — route it through any host on any supported transport (Markdown or MCP).
skillweave-observe command="report" session="<id>"
skillweave-observe command="events" session="<id>" level="WARNING"
skillweave-observe command="memory" session="<id>"
skillweave-observe command="health"
| Command | Description |
|---|---|
report | Generate a full execution report for a session (see references/report-format.md) |
timing | Show step-level timing breakdown — duration, sequence, bottlenecks |
events | Stream or filter events by level (DEBUG, INFO, WARNING, ERROR, METRIC) |
memory | Read execution memory drawers for a session — rules, decisions, patterns, gotchas, metrics |
summary | Compact session overview — status, duration, step count, errors |
health | Runtime health check — system load, queue depth, error rate, uptime |
Reports follow a structured markdown format with session metadata, per-step tables, and memory annex. See references/report-format.md for the full specification with example output.
Each session stores execution knowledge in five memory drawers:
| Level | Meaning |
|---|---|
| DEBUG | Detailed diagnostic information |
| INFO | Normal operational milestones |
| WARNING | Unexpected but non-fatal conditions |
| ERROR | Failures requiring attention |
| METRIC | Numerical data points (timings, counts) |
This skill reads from:
observation/ — Event logs, timing snapshots, health signalsexecution_memory.py — Session-level memory drawer APINo new Python code is required; this is a pure SKILL.md exposition of existing observation modules.
| Test Case | What to Validate |
|---|---|
| Report from event_logs | command="report" session="<id>" produces valid structured markdown with session metadata and per-step rows |
| Memory categories readable | command="memory" session="<id>" returns content for all five drawers (rules, decisions, patterns, gotchas, metrics) |
| Event filter by level | command="events" session="<id>" level="WARNING" returns only events at WARNING level or above |
| Summary output valid | command="summary" session="<id>" returns compact output with status, duration, step count, and error count |
| Health endpoint | command="health" returns valid JSON with system load, queue depth, error rate, and uptime |
| Timing breakdown | command="timing" session="<id>" returns per-step durations with identified bottlenecks |