ワンクリックで
phase-reference
Look up planning phases, track progress, and understand phase dependencies. Find which phase covers a feature or system.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Look up planning phases, track progress, and understand phase dependencies. Find which phase covers a feature or system.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Look up how the legacy D35E Foundry system stores mechanics. Use when writing migration scripts, designing dnd35e field equivalents, checking actor data paths (abilities, HP, saves, BAB, AC, skills), item type schemas (weapon, buff, spell, class, equipment), or understanding the changes[] modification template. System ID is D35E (all caps).
Step-by-step workflows for adding new item types, mechanics, compendium entries, and features from planning to code.
Compare D35E (legacy Foundry system), dnd5e, and PF2e implementations side-by-side. Use when deciding data structure for a new item type, comparing buff/AE/RuleElement approaches, checking HP/saves/BAB/AC paths across systems, reviewing condition implementations, or understanding why dnd35e chose a particular design over the D35E approach.
Look up raw D&D 3.5e SRD rules as written. Use when asked about spells (Fireball, Cure Moderate Wounds), feats (prerequisites, Power Attack), conditions (Stunned, Prone, Grappled), combat mechanics (iterative attacks, AoO, grapple, two-weapon fighting), saving throw DCs, or any rules-as-written question. Searches local SRD journal and d20srd.org.
Analyze, improve, and maintain phase planning documentation. Use when: consolidating redundant sections, reorganizing phase structure, updating checklists, moving deferred work, adding cross-references, or improving decision frameworks.
Look up Foundry VTT API, data structures, and patterns. Find classes, methods, events, and configuration options.
| name | phase-reference |
| description | Look up planning phases, track progress, and understand phase dependencies. Find which phase covers a feature or system. |
Ask questions like:
This skill helps you:
For the dnd35e system, all phase information lives in docs/migration-plan/roadmap.md.
This is the authoritative reference for:
phase-NN-*.md filesThis skill provides guidance on how to use phases to plan work. Don't copy phase names or status from here — always check docs/migration-plan/ for the canonical list.
The dnd35e roadmap breaks D&D 3.5e system implementation into major deliverables:
Early phases build POC fundamentals:
Mid phases expand to coverage:
Late phases polish & release:
Step 1: Open docs/migration-plan/roadmap.md (single source of truth)
Step 2: Use Ctrl+F to search the phase table for your feature name. Example: "Where should I add channel resistance for undead?"
→ Search "resistance" or "undead" in the table
→ Found in Phase 20 (Buffs & Conditions Full) or Phase 25 (Natural & Special Attacks)
→ Read the detailed spec in the corresponding phase-NN-*.md file
Step 3: Check dependencies (also in README.md) to understand prerequisites
Each phase in docs/migration-plan/ has:
In roadmap.md table:
In phase-NN-*.md file (detailed spec):
Dependency graph: roadmap.md includes a DAG showing which phases unlock which. Plan parallel work by following this graph.
When asking about a feature:
Good: "Phase 5 covers spellcasting. I'm implementing prepared spells and need to know the structure."
Better: "What phase covers spell effects? I need to know where to add spell resistance."
Best: "I'm implementing channel resistance for undead. What phase covers monster features? How does d35e handle energy resistances compared to 5e?"