From 923d98cce0e8a7c69137ce4d65be60ac1d041650 Mon Sep 17 00:00:00 2001 From: Prashaan Shakya <155162513+PrashaanShakya7@users.noreply.github.com> Date: Mon, 29 Jun 2026 14:42:55 +0545 Subject: [PATCH] mindmap skill: add harley, output paths, pass-through for unknown companies --- skills/mindmap.md | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/skills/mindmap.md b/skills/mindmap.md index 3402f1a..460ef50 100644 --- a/skills/mindmap.md +++ b/skills/mindmap.md @@ -23,21 +23,42 @@ The user invoked this command with: $ARGUMENTS | `nvidia` | Nvidia Corp. | US Semiconductors | 351% | #8/44 | | `tesla` | Tesla Inc. | US Motor | 135% | #9/38 | | `apple` | Apple Inc. | US Computers | 430% | #1/17 | +| `harley` | Harley Davidson INC | US Motor | 147% | #5/38 | Use `all` to run every company in sequence. ## Instructions 1. Parse $ARGUMENTS. Lowercase and trim each token. -2. If no argument is given, list the supported companies and stop. +2. If no argument is given, list the supported companies above and stop. 3. If the argument is `all`, expand to the full company list above. 4. For each company in the list: - - If not in the supported list, warn the user and skip. - - Otherwise run via Bash: + - Run via Bash from the `Mind Map claude` directory: ``` - python gen_mindmap.py + cd "C:\Users\shaky\Downloads\RealRate claude\RealRate\Mind Map claude" && python gen_mindmap.py ``` -5. After all runs, report which succeeded and which (if any) failed. + - `gen_mindmap.py` is the source of truth for supported companies. If it exits with an error, report the error message to the user and continue to the next company. + - On success, report the output path printed by the script (e.g. `Done (1920×1080): `). +5. After all runs, print a summary: + - ✓ succeeded: list company names + - ✗ failed: list company names with their error + +## Output locations + +Each company writes to its own subfolder inside `Mind Map claude/`: + +| Company | Subfolder | +|---|---| +| trilinc | *(root — no subfolder)* | +| strata | `Strata Critical Medical/` | +| hp | `HP Inc/` | +| angi | `Angi Inc/` | +| nvidia | `Nvidia Corp/` | +| tesla | `Tesla Inc/` | +| apple | `Apple Inc/` | +| harley | `Harley Davidson INC/` | + +Files per company: `-mindmap.png` (1920×1080) · `-linkedin-post.txt` ## Automation scripts (run outside Claude)