agentsclimarketplace

Graph writeup

Skill ternary-ai/skills/skills/basic/graph-writeup

Create a network diagram (peer relationships, business model, news sources) and embed it in the Thesis as a Mermaid graph block. Use when the user asks for a relationship map, peer network, business model diagram, or knowledge graph. For price/performance charts use the chart-writeup skill instead.From its SKILL.md

Install
npx -y skills add ternary-ai/skills --skill graph-writeup

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.0 KB, 416 tokens by cl100k_base, as published. Nobody here has run it

Graph Writeup

Overview

Generate deterministic Mermaid network diagrams from RDF-structured data and embed them directly in the Thesis as fenced mermaid code blocks. The frontend renders these into interactive graph visualisations.

Quick Use

  1. Identify the relationship to visualise (peers, news sources, business model).
  2. Call the appropriate graph tool to get the Mermaid block.
  3. Paste the returned block verbatim into the thesis field at the right section.

Graph Tools

Peer relationship network

graph_peer_network(ticker)

Fetches FMP peers + stock context and produces a directed graph showing sector, industry, country, and peer connections.

News source network

graph_news_sources(ticker)

Maps the ticker to its news API sources with article counts on edges.

Business model diagram

graph_business_model(ticker, extra_links_json)

Builds a top-down graph of company to sector/industry. Pass ad-hoc triples extracted from 10-K text as extra_links_json: [["ALMU", "sells to", "Data Centers"], ["ALMU", "competes with", "II-VI"]]

Writeup Insertion

Return the Mermaid block in the thesis field. Example:

graph LR
  ALMU["Aeluma ALMU"]
  Technology(("Technology"))
  ALMU -->|sector| Technology
  COHR["COHR"] -->|peer of| ALMU

Legacy SVG approach

The generate_chart tool (SVG file-based) is still available for custom time-series charts when Mermaid xychart-beta is insufficient.

Notes

  • Limit peer networks to 10 nodes for readability.
  • If a graph tool errors or returns no data, note it in chat only.
  • Mermaid graph direction: "LR" (left-right) for wide diagrams, "TD" (top-down) for deep hierarchies.

What ships with it: 2 files

3.6 KB alongside SKILL.md, 1 of them executable

agents/

scripts/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.