From learning
"Brainstorm and generate a Buzan-style structured mindmap JSON outline from any content. Use this skill whenever the user asks to create a mind map, mappa mentale, concept map, or visual summary. The skill prioritizes COGNITIVE EFFECTIVENESS over structural efficiency: it uses single keywords, strong visual associations (emojis), organic radiant thinking, and cross-linking to maximize memory retention and idea generation.". TRIGGER WHEN: the user requires assistance with tasks related to this domain. DO NOT TRIGGER WHEN: the task is outside the specific scope of this component.
npx claudepluginhub acaprino/alfio-claude-plugins --plugin learningThis skill uses the workspace's default tool permissions.
Analyze content and produce a structured mindmap JSON outline. This skill focuses on the intellectual work: extracting core themes, building organic hierarchy, assigning visual attributes, and finding non-linear associations. The output is a renderer-agnostic JSON structure.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Automates semantic versioning and release workflow for Claude Code plugins: bumps versions in package.json, marketplace.json, plugin.json; verifies builds; creates git tags, GitHub releases, changelogs.
Analyze content and produce a structured mindmap JSON outline. This skill focuses on the intellectual work: extracting core themes, building organic hierarchy, assigning visual attributes, and finding non-linear associations. The output is a renderer-agnostic JSON structure.
Do not force symmetrical or perfectly balanced branches. Human thought is organic. Prioritize cognitive impact: use highly evocative single words, vivid emojis, and let branches grow naturally based on the richness of the associations.
The user can specify these parameters. If not specified, use normal complexity.
| Level | L2 branches | Max depth | Description |
|---|---|---|---|
| essential | 3-5 | 2 | Core concepts only, high-impact synthesis. |
| normal | 5-7 | 4 | Balanced organic exploration (default). |
| detailed | 7-9 | 6 | Deep, comprehensive associative dive. |
Note: Node counts per branch are NOT fixed. Let them flow organically. Some L2 branches may have 10 children, others only 1.
Identify the core subject, main radiating themes, and hidden connections between different concepts.
central_image_prompt describing a visual representation of this core.Write the mindmap in the requested format. Default is JSON. Save to a file (e.g., /tmp/mindmap-outline.json).
{
"root": "๐ฏ Brainstorming",
"central_image_prompt": "A glowing human brain with colorful lightning bolts radiating outward",
"branches":[
{
"id": "b1",
"text": "๐จ Creativity",
"color": "#ff6b6b",
"children":[
{ "id": "b1_1", "text": "๐ก Ideas" },
{ "id": "b1_2", "text": "๐ Connections" }
]
},
{
"id": "b2",
"text": "โ๏ธ Process",
"color": "#4ecdc4",
"children":[
{ "id": "b2_1", "text": "โณ Time" }
]
}
],
"cross_links":[
{ "from": "b1_2", "to": "b2_1", "label": "accelerates" }
]
}
If markdown is requested, produce a nested list. Omit colors and cross-links, but strictly maintain the single-keyword rule and emojis.
Use specific emojis when applicable, otherwise use domain-specific ones:
| Function | Emoji | Function | Emoji |
|---|---|---|---|
| Central Concept | ๐ฏ | Concrete Example | ๐ก |
| Definition/Core | ๐ | Metric/Data | ๐ |
| Process/Action | โ๏ธ | Person/Role | ๐ค |
| Advantage/Pro | โ | Time/Phase | โณ |
| Limit/Con | โ | Warning/Risk | โ ๏ธ |
Use these high-contrast, brain-friendly colors for L2 branches:
| # | Color | Hex |
|---|---|---|
| 1 | Coral | #ff6b6b |
| 2 | Teal | #4ecdc4 |
| 3 | Lime | #95e77e |
| 4 | Mint | #a8e6cf |
| 5 | Peach | #ffd3b6 |
| 6 | Lavender | #d4a5f5 |
| 7 | Yellow | #f7dc6f |
| 8 | Sky | #85c1e9 |
id (unique string, e.g., "node_1"), text (emoji + single keyword), and color (L2 only).from (id), to (id), and optional label (1 word).