Agent skill
meta-creativeentelechy-trading-agent-569ab27f
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/meta-creativeentelechy-trading-agent-569ab27f
SKILL.md
skills/meta/swarm-optimization-skill.md
name: "Swarm Architecture & Prompt Engineering" description: "Principles for rewriting Agent Personas and Skill files to improve coordination and logic."
Core Philosophy: "Code is Cheap, Context is King"
To fix a behavioral bug, you rarely need to change the Python code first. You usually need to change the Agent's Instructions.
Debugging Agent Failure Modes
- Hallucination: The agent tries to use a tool it doesn't have.
- Fix: Edit the
toolslist inrules/X.mdOR restrict the instruction to available tools.
- Fix: Edit the
- Looping/Indecision: The agent keeps asking for clarification.
- Fix: Add a "Default Action" protocol. (e.g., "If unsure, Default to Safe Mode").
- Lazy Execution: The agent gives a summary instead of the code.
- Fix: Add a "Constraint": "You must output the full file content. No placeholders."
Role Optimization Strategies
- The "Separation of Concerns" Patch:
- If an agent is overwhelmed, split their duties.
- Example: If
@Quantis failing to log trades because it's too busy calculating signals, move the Logging duty to@MLEng.
- The "Explicit Handoff" Patch:
- If agents are ignoring each other, hardcode the communication.
- Example: Update
@Frontend: "You strictly listen tows://localhost:8000. You do not calculate your own indicators."
Prompt Refinement Patterns
When rewriting System Instructions in agent files:
- Use Negatives Constraints: "Do NOT use
time.sleep()." - Use Chain-of-Thought Triggers: "Before answering, list 3 potential risks."
- Use Artifact Mandates: "Your output must always be a JSON block."
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?