$npx -y skills add SKE-Labs/agent-trading-skills --skill templateWhat this skill does and when to use it. Use when [trigger condition 1], [trigger condition 2], or [trigger condition 3].
| 1 | # Skill Title |
| 2 | |
| 3 | Brief one-line introduction. |
| 4 | |
| 5 | ## Identification |
| 6 | |
| 7 | How to identify the pattern, setup, or condition: |
| 8 | |
| 9 | 1. **Step one** — Description |
| 10 | 2. **Step two** — Description |
| 11 | 3. **Step three** — Description |
| 12 | |
| 13 | | Parameter | Value | Notes | |
| 14 | | --------- | ----- | ----- | |
| 15 | | Level 1 | X% | Usage | |
| 16 | | Level 2 | Y% | Usage | |
| 17 | |
| 18 | ## Workflow |
| 19 | |
| 20 | ### 1. Get Data |
| 21 | |
| 22 | ``` |
| 23 | get_indicators(indicator_code="rsi", symbol=<symbol>, exchange=<exchange>, interval=<interval>, count=20) |
| 24 | ``` |
| 25 | |
| 26 | ### 2. Analyze |
| 27 | |
| 28 | Describe what to look for in the data. |
| 29 | |
| 30 | ### 3. Mark on Chart |
| 31 | |
| 32 | ``` |
| 33 | draw_chart_analysis(action="create", drawing={ |
| 34 | "type": "support", |
| 35 | "points": [ |
| 36 | {"time": <timestamp>, "price": <price>}, |
| 37 | {"time": <timestamp>, "price": <price>} |
| 38 | ], |
| 39 | "options": {"text": "Label"} |
| 40 | }) |
| 41 | ``` |
| 42 | |
| 43 | ### 4. Report to Orchestrator |
| 44 | |
| 45 | Provide structured summary: setup, confidence, key levels (entry, stop, target), indicator values, risk flags. |
| 46 | |
| 47 | ## Key Rules |
| 48 | |
| 49 | - Rule 1 |
| 50 | - Rule 2 |
| 51 | - NEVER: Critical mistake to avoid and why |
| 52 | |
| 53 | ## Related Skills |
| 54 | |
| 55 | - **skill-name** — relationship note |
| 56 | - **skill-name** — relationship note |