一键导入
mycelium-status
Authoring guidance for Mycelium status records — workspace-state snapshots that separate pre-existing changes from new agent work
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Authoring guidance for Mycelium status records — workspace-state snapshots that separate pre-existing changes from new agent work
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Communication behavior for leader agents who speak directly to users. Language matching, dense precision, fact verification, and clear-as-possible answers.
Shared dependency version catalog for dependency-installing and dependency-bumping agents. Load before adding, updating, or recommending dependencies.
Ultra-compressed English-only communication. Drops everything non-essential. Keeps full technical accuracy. No tiers, no modes.
Use this when you need to build, debug, capture, validate, and refine Godot games end to end with native GDScript, staged planning, scene builders, visual QA, and optional 3D asset workflows.
Convert a local document or image file to a Markdown file using Mistral OCR. Supports PDF, Office, OpenDocument, images, and text/code formats. Use when you need to extract text from a file into a clean Markdown file.
Keeps agents up to date on modern CSS capabilities and replacements for legacy approaches. Use this when editing CSS files.
| name | mycelium-status |
| description | Authoring guidance for Mycelium status records — workspace-state snapshots that separate pre-existing changes from new agent work |
Use this guidance when you write status records under substrate/traces/status/. Status records capture the repository state before agent work begins. They separate pre-existing changes from what the agent introduces during a session.
Status records are point-in-time snapshots of uncommitted repository changes. They serve as a baseline so that later verification can distinguish between:
Status records do not dump raw diffs. They summarize the nature, scope, and origin of pre-existing changes.
Write a status record when git status or git diff shows uncommitted changes before you start work. This happens when:
Skip when the working tree is clean and no pre-existing changes exist.
Use this format with hyphenated suffixes to indicate the record type:
substrate/traces/status/YYYY-MM-DD-<task-slug>-workspace-state.md
substrate/traces/status/YYYY-MM-DD-<task-slug>-preexisting-changes.md
Convention:
-workspace-state.md — the default ending for general pre-work snapshots-preexisting-changes.md — use this ending when the emphasis is on specific uncommitted changes rather than general stateExamples from this repository:
2026-05-04-orchestrator-researcher-threshold-workspace-state.md
2026-04-19-orchestrator-operation-reuse-workspace-state.md
2026-04-20-godot-skill-preexisting-changes.md
2026-03-27-preexisting-changes.md
Use YAML frontmatter with these fields:
---
status: recorded
created_at: YYYY-MM-DD
---
Include these sections:
When git status or git diff shows uncommitted changes before work begins, follow these steps in order:
git status and git diff to detect and understand the changes.substrate/traces/status/ directory exists (create it if missing)..gitignore includes substrate/traces/status/ so status records are never tracked by git.substrate/traces/status/ using the naming convention described above. Summarize the nature, scope, and origin of pre-existing changes — do not dump raw diffs.See existing status records under substrate/traces/status/ for working examples.