بنقرة واحدة
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 ويثبّتها لك.
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.
استنادا إلى تصنيف SOC المهني
| 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.