Objective: To synthesize the information gathered from all other skills into a single, coherent, and optimized execution plan. This is the final planning step before execution begins.
Instructions:
When you invoke this skill, you must create a final execution plan that integrates the findings from the following skills:
predictive_intelligence
advanced_web_search
environment_observation
strategy_generation
Your final plan should be structured as follows:
1. Consolidated Context:
Task Summary: Briefly re-state the user's goal.
Key Files: List the key files and their purpose.
Environment State: Summarize the most relevant findings from your environment observation.
Web Research: Briefly summarize the most promising solutions or insights from your web search.
2. Selected Strategy:
Based on all the information you have gathered, which of the strategies you generated is the most likely to succeed?
Justify your choice. Why is this strategy superior to the alternatives?
3. Step-by-Step Execution Plan:
Provide a detailed, numbered list of the exact commands you will execute to implement the selected strategy.
Clarity is critical: Each step should be a single, unambiguous command.
Include comments where necessary to explain the purpose of a command.
Use heredoc for creating or modifying files.
4. Pre-computation and Verification:
Before each step, state the expected outcome of the command.
After each step, describe how you will verify that the command was successful.
Example Usage:
Task: "Fix the FileNotFoundError in main.py."
Execution Plan:
Consolidated Context:
Task Summary: The user wants to fix a FileNotFoundError in main.py, which is likely caused by a missing dependency listed in requirements.txt.
Key Files:main.py (the application script), requirements.txt (the dependency list).
Environment State: The requests library, which is listed in requirements.txt, is not installed in the current Python environment.
Web Research: StackOverflow confirms that a FileNotFoundError can occur if a program tries to access a file that is expected to be created by a dependency that is not installed.
Selected Strategy:
The best strategy is to install the missing dependencies from requirements.txt. This is a low-risk, high-reward action that directly addresses the likely root cause of the problem.
Step-by-Step Execution Plan:
Command:pip install -r requirements.txt
Expected Outcome: The requests library will be installed.
Verification: Run pip list | grep requests and expect to see requests in the output.
Command:python main.py
Expected Outcome: The script will run without a FileNotFoundError.
Verification: Check the script's output for the expected result.
1---2name: strategy-synthesis3description: Strategy Synthesis Skill4---5# Strategy Synthesis Skill67**Objective:** To synthesize the information gathered from all other skills into a single, coherent, and optimized execution plan. This is the final planning step before execution begins.89**Instructions:**1011When you invoke this skill, you must create a final execution plan that integrates the findings from the following skills:1213* `predictive_intelligence`14* `advanced_web_search`15* `environment_observation`16* `strategy_generation`1718Your final plan should be structured as follows:1920**1. Consolidated Context:**21* **Task Summary:** Briefly re-state the user's goal.22* **Key Files:** List the key files and their purpose.23* **Environment State:** Summarize the most relevant findings from your environment observation.24* **Web Research:** Briefly summarize the most promising solutions or insights from your web search.2526**2. Selected Strategy:**27* Based on all the information you have gathered, which of the strategies you generated is the most likely to succeed?28* Justify your choice. Why is this strategy superior to the alternatives?2930**3. Step-by-Step Execution Plan:**31* Provide a detailed, numbered list of the exact commands you will execute to implement the selected strategy.32* **Clarity is critical:** Each step should be a single, unambiguous command.33* Include comments where necessary to explain the purpose of a command.34* Use `heredoc` for creating or modifying files.3536**4. Pre-computation and Verification:**37* Before each step, state the expected outcome of the command.38* After each step, describe how you will verify that the command was successful.3940**Example Usage:**4142**Task:** "Fix the `FileNotFoundError` in `main.py`."4344**Execution Plan:**4546* **Consolidated Context:**47 * **Task Summary:** The user wants to fix a `FileNotFoundError` in `main.py`, which is likely caused by a missing dependency listed in `requirements.txt`.48 * **Key Files:** `main.py` (the application script), `requirements.txt` (the dependency list).49 * **Environment State:** The `requests` library, which is listed in `requirements.txt`, is not installed in the current Python environment.50 * **Web Research:** StackOverflow confirms that a `FileNotFoundError` can occur if a program tries to access a file that is expected to be created by a dependency that is not installed.5152* **Selected Strategy:**53 * The best strategy is to install the missing dependencies from `requirements.txt`. This is a low-risk, high-reward action that directly addresses the likely root cause of the problem.5455* **Step-by-Step Execution Plan:**56 1. **Command:** `pip install -r requirements.txt`57 * **Expected Outcome:** The `requests` library will be installed.58 * **Verification:** Run `pip list | grep requests` and expect to see `requests` in the output.59 2. **Command:** `python main.py`60 * **Expected Outcome:** The script will run without a `FileNotFoundError`.61 * **Verification:** Check the script's output for the expected result.
Run npx skillmds@latest add whamp/strategy-synthesis in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Strategy Synthesis Skill It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
whamp (@whamp) published this skill. Their other Agent Skills are listed on their SkillMD profile.