ワンクリックで
declare
Analyzes task plan and declares files that will be created or modified, producing declared-files.json.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Analyzes task plan and declares files that will be created or modified, producing declared-files.json.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Executes the implementation plan for a Formic task.
Decomposes a high-level goal into multiple independent child tasks.
Generates a feature specification (README.md) for a Formic task.
Generates implementation plan (PLAN.md) and structured subtasks (subtasks.json) for a Formic task.
| name | declare |
| description | Analyzes task plan and declares files that will be created or modified, producing declared-files.json. |
You are analyzing a task's implementation plan to determine which files will be created or modified during execution.
Task Title: $TASK_TITLE
Task Documentation: $TASK_DOCS_PATH
Output Location: $TASK_DOCS_PATH/declared-files.json
Read the task's planning documents:
$TASK_DOCS_PATH/README.md - Feature specification$TASK_DOCS_PATH/PLAN.md - Implementation plan$TASK_DOCS_PATH/subtasks.json - Structured subtask listAnalyze the plan to identify ALL files that will be:
Classify each file as either:
package.jsontsconfig.jsonsrc/types/index.tssrc/server/index.ts)Write the output to $TASK_DOCS_PATH/declared-files.json with this exact schema:
{
"exclusive": [
"src/server/services/newService.ts",
"src/server/routes/newRoute.ts"
],
"shared": [
"package.json",
"src/types/index.ts"
]
}
package.json, tsconfig.json, src/types/index.ts, src/server/index.tsWrite ONLY the declared-files.json file to the specified path. Do not modify any other files.