Agent skill

keyword-graph-view

Extract exactly 8 context-sensitive keywords from Chinese, English, or mixed text and turn them into a distributed weighted Graph View with no center goal node. Use when Codex needs keyword extraction, blacklist filtering, co-occurrence edges, node definitions/notes, weighted graph JSON, or an online Graph View tool for text analysis.

twhsigithub.com/twhsiGitHub ↗
claude-codecodexships scripts
Install
npx skills add twhsi/skills --skill keyword-graph-view --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 29
SKILL.md size: 4 KB
Bundled scripts: yes
Path: skills/keyword-graph-view/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: twhsi/skills
Stars: 256
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Keyword Graph View Create a centerless keyword network from raw text. The output should contain 8 keyword nodes, weighted undirected edges, and a short definition/note for every node. ## Live Tool - Open the public app at `https://keyword-graph-view.twhsi.chatgpt.site/` when the user wants an interactive Graph View. - Use `assets/web-app/` when the user wants to inspect, adapt, or redeploy the validated website source. - In the web app, paste or import text, edit the blacklist, select a case, and press the generate button. Click a node to inspect its definition, note, evidence, and weighted connections. ## Workflow 1. Read the source text and any user-provided blacklist. 2. Remove blacklisted phrases before token scoring, then filter blacklisted tokens during ranking. 3. Extract exactly 8 keywords by frequency, term length, and spread through the source. 4. Build weighted co-occurrence edges by scanning a configurable token window. 5. Do not create a "center", "main goal", "中心目標", or hub node unless the user explicitly asks for a radial Mandalart layout. 6. Generate a definition for each node from its strongest evidence sentence and connected keywords. 7. Render or return a distr

What's inside
Steps it walks through
  1. Live Tool
  2. Workflow
  3. Output Schema
  4. Visual Rules
  5. Blacklist
  6. Script
  7. Web App
Ships with 24 files
  • agents/openai.yaml
  • assets/web-app/.gitignore
  • assets/web-app/.openai/hosting.json
  • assets/web-app/app/cases.ts
  • assets/web-app/app/chatgpt-auth.ts
  • assets/web-app/app/globals.css
  • assets/web-app/app/layout.tsx
  • assets/web-app/app/page.tsx
  • assets/web-app/build/sites-vite-plugin.ts
  • assets/web-app/db/index.ts
  • assets/web-app/db/schema.ts
  • assets/web-app/drizzle.config.ts
  • assets/web-app/drizzle/meta/_journal.json
  • assets/web-app/eslint.config.mjs
  • assets/web-app/next.config.ts
  • assets/web-app/package-lock.json
  • assets/web-app/package.json
  • assets/web-app/postcss.config.mjs
  • assets/web-app/public/favicon.svg
  • assets/web-app/public/file.svg
  • assets/web-app/public/globe.svg
  • assets/web-app/public/og.png
  • assets/web-app/public/window.svg
  • assets/web-app/tests/rendered-html.test.mjs
first 24 of 29
Commands it runs
python3 scripts/extract_keyword_graph.py input.txt --blacklist blacklist.txt --out graph.json
cd assets/web-app
npm install
npm run dev
More from skills
All skills →
About this skill
What does the keyword-graph-view skill do?

Extract exactly 8 context-sensitive keywords from Chinese, English, or mixed text and turn them into a distributed weighted Graph View with no center goal node. Use when Codex needs keyword extraction, blacklist filtering, co-occurrence edges, node definitions/notes, weighted graph JSON, or an online Graph View tool for text analysis.

How do I install it?

Run `npx skills add twhsi/skills --skill keyword-graph-view --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From twhsi/skills, a repository with 256 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going