Agent skill

bip-extract-refs

Extract paper references and concepts from a LaTeX repository for the bipartite knowledge graph.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill bip-extract-refs --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/bip-extract-refs/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# Extract References from LaTeX Repository Analyze a LaTeX repository to extract papers and concepts for the bipartite knowledge graph. ## Usage ``` /bip-extract-refs <path-to-tex-repo> ``` ## What This Skill Does 1. **Reads** `main.bib` and `main.tex` from the specified repository 2. **Extracts** citation keys and their context from the manuscript 3. **Identifies** key concepts and potential relationships 4. **Filters out** software/tool citations (e.g., packages, libraries) 5. **Returns** a structured summary with: - Papers found (using BibTeX citation keys as bip IDs) - Suggested concepts to create - Potential edges to add ## Workflow Given a path like `../dasm-tex-1`, perform this analysis: ### Step 1: Read the BibTeX file ```bash cat <repo>/main.bib ``` Extract citation keys (the part after `@article{` or `@inproceedings{`, etc.). ### Step 2: Read the manuscript ```bash cat <repo>/main.tex ``` Look for: - `\cite{...}` commands and their surrounding context - Section structure to understand paper focus - Key methodological terms ### Step 3: Identify Concepts Look for recurring themes that could become concept nodes: - Methods mentioned repeatedly - Domain-specific terms - Mathe

What's inside
Steps it walks through
  1. Usage
  2. What This Skill Does
  3. Workflow
  4. Step 1: Read the BibTeX file
  5. Step 2: Read the manuscript
  6. Step 3: Identify Concepts
  7. Step 4: Generate Output
  8. Filtering Rules
  9. Integration with bip
  10. Example Session
Ships with 1 file
  • metadata.json
Commands it runs
cat <repo>/main.bib
cat <repo>/main.tex
Check which papers exist in bip
bip get Smith2026-ab
Create suggested concepts
bip concept add x-model --name "X Model" --description "..."
Add edges
bip edge add -s Smith2026-ab -t x-model -r introduces -m "Foundational paper"
More from claude-skill-registry
All skills →
About this skill
What does the bip-extract-refs skill do?

Extract paper references and concepts from a LaTeX repository for the bipartite knowledge graph.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill bip-extract-refs --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 majiayu000/claude-skill-registry, a repository with 534 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