beeweave: Skill for Claude Code

.skills/wiki/beeweave-graph-colorize/SKILL.md

beeweave-graph-colorize is a skill for Claude Code, Codex from ptonlix/beeweave. It costs 139 tokens per session (2,440 once invoked), scanned A, a copy of graph-colorize, MIT.

A tool that assigns colors to nodes in Obsidian's graph view based on tags, folders, or visibility. The graph view is a visual map of links between wiki pages.

In plain words
What is it for?
Use it to color-code the graph by category, tag, folder, file, or visibility.
Why use it?
It makes different groups of pages easier to distinguish when looking at the wiki's link map.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is ptonlix/beeweave's own configuration. It tells Claude Code and Codex how to work on beeweave itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything beeweave configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ptonlix/beeweave. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ptonlix/beeweave/main/.skills/wiki/beeweave-graph-colorize/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ptonlix/beeweave

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for beeweave-graph-colorize

README.md
[![agentmods](https://agentmods.dev/badge/skills/ptonlix/beeweave/beeweave-graph-colorize/github.svg)](https://agentmods.dev/skills/ptonlix/beeweave/beeweave-graph-colorize)
Your own site
<a href="https://agentmods.dev/skills/ptonlix/beeweave/beeweave-graph-colorize"><img src="https://agentmods.dev/badge/skills/ptonlix/beeweave/beeweave-graph-colorize/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for beeweave-graph-colorize

Your own site · 80×15
<a href="https://agentmods.dev/skills/ptonlix/beeweave/beeweave-graph-colorize"><img src="https://agentmods.dev/badge/skills/ptonlix/beeweave/beeweave-graph-colorize.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 139 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,440 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00139 $0.02440
Opus 5 $0.00069 $0.01220
Sonnet 5 $0.00028 $0.00488
Haiku 4.5 $0.00014 $0.00244

Measured 9d ago against content hash 3c28b1a75dbe, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

beeweave-graph-colorize scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

88% identical to graph-colorize — 16 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.skills/wiki/beeweave-graph-colorize/SKILL.md · 179 lines

How it starts

The opening of the file, as written. The whole thing — 179 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Graph Colorize — Color-code the Obsidian Graph View

You are rewriting $BEEWEAVE_VAULT_PATH/.obsidian/graph.json so Obsidian's graph view tints nodes by tag, folder, or visibility.

Obsidian stores graph settings in <vault>/.obsidian/graph.json. The colorGroups array is a list of {query, color} pairs; the first matching query wins per node. Queries use Obsidian's search syntax: tag:#foo, path:"concepts", file:foo, etc. Color is {"a": 1, "rgb": <packed-int>} where the int is (R << 16) | (G << 8) | B.

Before You Start

  1. Resolve config — follow the Config Resolution Protocol in beeweave-core/SKILL.md (inline @name override → walk up CWD for .env~/.beeweave/config → prompt setup). This gives BEEWEAVE_VAULT_PATH.
  2. Confirm $BEEWEAVE_VAULT_PATH/.obsidian/ exists. If it doesn't, the vault has never been opened in Obsidian — tell the user to open the vault once in Obsidian, then re-run.
  3. Warn the user if Obsidian is likely open: Obsidian overwrites graph.json on close. Tell them to close the vault first, or be ready to reload (Cmd/Ctrl+R) and not touch the graph settings until they reload.

Step 1: Pick a Mode

Infer the mode from the user's phrasing. If ambiguous, default to by-tag.

User intent Mode
"color by tag", "color my graph", "make it colorful" (default) by-tag
"color by folder", "color by category", "color by directory" by-category
"highlight visibility", "show internal/pii in graph", "visibility colors" by-visibility
User provides explicit mapping (tag:#foo = red, or JSON blob) custom
"combine tag and visibility" / "both" combined (visibility first, then tag)

Step 2: Build the colorGroups Array

Palette (10 distinct, colorblind-friendly colors)

Use in order. If more groups than colors, cycle and add a lightness shift by dividing brightness ~20% via a second pass — or just cap at 10 and tell the user the remaining tags share the "other" color.

Read the full file on GitHub · 179 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 179 lines · 139 tokens per session scan A 3c28b1a75dbe

Subscribe to this mod's changes

beeweave-graph-colorize is a skill published in the GitHub repository ptonlix/beeweave (6 stars, last pushed 1mo ago), licensed MIT. It adds 139 tokens to every session and 2,440 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to graph-colorize, differing in 16 lines, and is treated as a copy.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 50 tokens

accessibility

Consolidated accessibility skill entrypoint for WCAG 2.2, ARIA Authoring Practices, cognitive accessibility, Section 508, EN 301 549, design intent verification, and the Accessibility Planner workflow.

microsoft/hve-core · 47 tokens

make-resume

A Chinese-language tool for creating editable HTML resumes that can be changed in a browser and printed to PDF. It uses available resume templates when they are installed and otherwise provides a simpler fallback.

Hisn00w/ASu-skills · 86 tokens