install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/RKiding/Awesome-finance-skills/alphaear-logic-visualizer" ~/.claude/skills/comeonoliver-skillshub-alphaear-logic-visualizer && rm -rf "$T"
manifest:
skills/RKiding/Awesome-finance-skills/alphaear-logic-visualizer/SKILL.mdsource content
AlphaEar Logic Visualizer Skill
Overview
This skill specializes in creating visual representations of logic flows, specifically generating Draw.io XML compatible diagrams. It is useful for visualizing investment theses or signal transmission chains.
Capabilities
1. Generate Draw.io Diagrams
1. Generate Draw.io Diagrams (Agentic Workflow)
YOU (the Agent) are the Visualizer. Use the prompts in
references/PROMPTS.md to generate the XML.
Workflow:
- Generate XML: Use the Draw.io XML Generation Prompt from
to convert your logical chain into XML.references/PROMPTS.md - Save/Render: Use
methodscripts/visualizer.py
to save the XML into a viewable HTML file for the user.render_drawio_to_html(xml_content, filename)
Example Usage (Conceptual):
- Agent Action: "I will now generate a Draw.io XML for the transmission chain..."
- Tool Call:
visualizer.render_drawio_to_html(xml_content="<mxGraphModel>...", filename="chain_visual.html")
Dependencies
- None (Standard Library for string manipulation).