一键导入
managing-plane-tasks
High-performance management of Plane PMS using specialized scripts, persistent context, Jinja2 templates, and memory MCP integration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
High-performance management of Plane PMS using specialized scripts, persistent context, Jinja2 templates, and memory MCP integration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Automated governance, hook installation, pre-commit validation, branch isolation, and safe commit operations.
Enforcement of safety guardrails, axiom verification, secret scanning, and mutability protections.
Building and managing premium statistical dashboards, RAG explorer UIs, warehouse log monitors, and real-time visualization centers.
Integration of agent systems with blockchain protocols, contracts, event stores, reputation networks, and collective verification engines.
AI model configuration, LLM memoization, agentic RAG search, and vector library maintenance.
Catalog generation, reference link verification, workshop documentation building, and knowledge gap analysis.
| name | managing-plane-tasks |
| description | High-performance management of Plane PMS using specialized scripts, persistent context, Jinja2 templates, and memory MCP integration. |
| type | skill |
| version | 4.0.0 |
| category | routing |
| agents | ["python-ai-specialist","ai-app-developer","master-system-orchestrator"] |
| knowledge | ["plane-integration.json","api-integration-patterns.json"] |
| scripts | ["scripts/sync_project_context.py","scripts/create_task.py","scripts/associate_task.py","scripts/update_status.py","scripts/list_cycles.py","scripts/list_modules.py","scripts/list_labels.py","scripts/list_issues.py",{"scripts/post_solution.py":"High-fidelity solution reporter (mandatory for closure)."},"lib/pms/client.py","scripts/legacy/pms/manager.py"] |
| tools | ["mcp_plane_retrieve_work_item","mcp_memory_read_graph","mcp_memory_open_nodes","mcp_memory_search_nodes"] |
| related_skills | ["orchestrating-mcp","mastering-project-management"] |
| references | ["references/project_context.json","references/task_definition_schema.json","references/task_definition_guide.md","references/solution_definition_schema.json"] |
| templates | ["templates/work_item.html.j2","templates/solution_comment.html.j2"] |
| settings | {"auto_approve":false,"retry_limit":3,"timeout_seconds":300,"safe_to_parallelize":false,"orchestration_pattern":"routing"} |
This skill enables high-performance management of Plane projects and issues using specialized Python scripts that utilize a persistent context layer and Jinja2 templates.
[!IMPORTANT] Priority Directive: ALWAYS prioritize using the provided scripts over raw MCP tools. Every creation and update MUST be performed via Jinja2 templates to ensure visual consistency and technical fidelity. Raw MCP updates for issue descriptions are forbidden except in emergency discovery scenarios.
This skill enables agents to manage projects, issues, and states in a remote Plane PMS instance using the Plane MCP server. Every task created follows a formal task definition schema that links the work item to specific factory assets — workflows, agents, skills, scripts, knowledge, patterns, templates, blueprints, and tests.
[!NOTE] Every task is a hypothesis about which factory assets best solve the defined problem. The schema formalizes context engineering — giving agents immediate, situation-adequate consciousness of available tools, techniques, and methodologies. See Task Definition Guide for the full philosophy.
create_task.py to maintain visual consistency across all issues, list_cycles.py to discover active sprint UUIDs, and list_modules.py / list_labels.py for context discovery.| State | UUID |
|---|---|
| Backlog | 294ddb00-19ce-4ffe-9eac-2fd4e998d7f8 |
| Todo | 8e155185-58ad-404b-8458-6a7c9edbf09b |
| In Progress | d89aabd2-46d4-4f46-8ce4-eb49e06cac03 |
| Done | ef4b2395-3edb-41e9-adcd-7ec77d534f0f |
| Cancelled | 0723fa1c-6935-4661-a873-f5295203e58c |
mcp_config.json.
${env:PLANE_API_TOKEN} for the API token.conda run -p D:\Anaconda\envs\cursor-factory.Follow this script-first workflow for all Plane project management operations.
Before starting any significant work, sync your local project context to ensure you have the latest UUIDs for cycles, modules, and labels.
conda run -p D:\Anaconda\envs\cursor-factory python .agent/skills/routing/managing-plane-tasks/scripts/sync_project_context.py
This script updates references/project_context.json, which is used by all other scripts to avoid redundant API discovery.
Use the utility scripts to explore the project state. These scripts are faster and more informative than raw MCP tools.
conda run -p D:\Anaconda\envs\cursor-factory python .agent/skills/routing/managing-plane-tasks/scripts/list_cycles.py
conda run -p D:\Anaconda\envs\cursor-factory python .agent/skills/routing/managing-plane-tasks/scripts/list_modules.py
conda run -p D:\Anaconda\envs\cursor-factory python .agent/skills/routing/managing-plane-tasks/scripts/list_labels.py
conda run -p D:\Anaconda\envs\cursor-factory python .agent/skills/routing/managing-plane-tasks/scripts/list_issues.py \
--cycle UUID \
--module UUID \
--labels UUID,UUID
If you need the full description or comments of a specific issue, use the MCP tool (Discovery only).
// Tool: mcp_plane_retrieve_work_item
{
"project_id": "RESOLVED-FROM-CONTEXT",
"work_item_id": "AGENT-XX"
}
Work item creation is strictly regulated. Direct MCP creation is forbidden. All tasks must be created via create_task.py to ensure they adhere to the Jinja2 visual standard and technical schema.
[!CAUTION] Creating a work item without the Jinja-rendered
task.jsonstructure is a governance violation.
Ensure you have run sync_project_context.py recently. The scripts will automatically use the resolved UUIDs from references/project_context.json.
Prepare a task_input.json in the tmp/ directory.
[!IMPORTANT] Mandatory Fields & Auto-Resolution:
- cycle: If not provided, the script will automatically use the
ACTIVE_CYCLEfromproject_context.json.- module: If not provided, it will default to "agent system" or fail if no logical default exists.
- priority: Defaults to "medium".
- parent: Defaults to
null.Pre-Flight Validation: Always run
sync_project_context.pybeforecreate_task.py. The script now checks for the presence of mandatory structural UUIDs before attempting the Plane API call, preventing 400 errors.
[!TIP] Estimation Points: You can now use numeric Fibonacci values (e.g.,
1,3,5,8,13,21,34,55) for theestimate_pointfield. The scripts will automatically resolve these to the correct Plane UUIDs usingreferences/project_context.json.
conda run -p D:\Anaconda\envs\cursor-factory python .agent/skills/routing/managing-plane-tasks/scripts/create_task.py --json tmp/task_input.json
Use associate_task.py. You can find active UUIDs via list_cycles.py or the context file.
conda run -p D:\Anaconda\envs\cursor-factory python .agent/skills/routing/managing-plane-tasks/scripts/associate_task.py \
--issue AGENT-XX \
--module UUID \
--cycle UUID
Use update_status.py.
conda run -p D:\Anaconda\envs\cursor-factory python .agent/skills/routing/managing-plane-tasks/scripts/update_status.py \
--issue AGENT-XX \
--state "In Progress"
Every issue marked as Done MUST be accompanied by a professional solution summary rendered via the solution_comment.html.j2 template. This ensures technical fidelity and prevents shallow, uninformative closures.
Follow solution_definition_schema.json.
Use the post_solution.py script. This script### Phase 5: Close the Loop (High-Fidelity)
Once work is verified, generate a high-fidelity solution JSON and post it to close the task.
Example Command:
conda run -p D:\Anaconda\envs\cursor-factory python .agent/skills/routing/managing-plane-tasks/scripts/post_solution.py --issue AGENT-173 --json solution.json --close
Optimal Solution Template (solution.json):
{
"issue": "AGENT-173",
"title": "Knowledge Base Reorganization & Test Fixes",
"summary": "This task accomplished a comprehensive reorganization of the .agent/knowledge base, moving over 250 files into categorized subdirectories (core, agents, tech, integration) to improve system manageability and context retrieval. Additionally, the managing-plane-tasks skill was hardened to enforce mandatory priority, module, and cycle fields, with support for active cycle auto-selection. All 54 validation tests were successfully verified under the new recursive directory structure.",
"architectural_decisions": [
"Recursive Globbing Strategy: Adopted **/*.json for all validation scripts and sync tools to support nested categorization, ensuring scalability as the knowledge base grows.",
"Resource Governance: Shifted from auto-creation of modules/cycles to strict validation against existing factory assets to maintain repository integrity.",
"Active Cycle Resolution: Implemented keyword-based resolution ('active' or 'current') to streamline task assignment and reduce manual UUID lookups during execution."
],
"evolution": [
"Modified scripts/validation/sync_knowledge_counts.py and associated unit tests to support multi-level file counting.",
"Hardened .agent/skills/routing/managing-plane-tasks/scripts/create_task.py with stricter schema validation and cycle resolution.",
"Standardized .agent/workflows/feature-development.md to adopt high-fidelity task management protocols."
],
"files_affected": [
".agent/skills/routing/managing-plane-tasks/scripts/create_task.py",
".agent/skills/routing/managing-plane-tasks/references/task_definition_schema.json",
".agent/skills/routing/managing-plane-tasks/scripts/post_solution.py",
"scripts/validation/sync_knowledge_counts.py",
"tests/validation/test_knowledge_schema.py"
],
"changes": [
{
"category": "Structure",
"description": "Reorganized knowledge base into 4 categories: core, agents, tech, integration."
},
{
"category": "Governance",
"description": "Made 'priority', 'module', and 'cycle' mandatory in Plane task creation schema."
}
],
"verification": [
{
"type": "Automated Tests",
"result": "54/54 tests passed across validation/test_knowledge_schema.py and unit/sync/test_sync_knowledge_counts.py"
},
{
"type": "Manual Verification",
"result": "Verified recursive directory structure and manifest.json synchronization manually."
}
]
}
sync_project_context.py before work and specialized scripts for all mutations.create_task.py and post_solution.py.references/project_context.json to minimize API latency.post_solution.py has rendered the architectural decisions and verification proof.list_cycles.py to ensure you are working on the currently active sprint items.Context engineering is the foundation of intelligent agency. Every task refines the system's consciousness.