bip-extract-refs
Extract paper references and concepts from a LaTeX repository for the bipartite knowledge graph.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Usage
- What This Skill Does
- Workflow
- Step 1: Read the BibTeX file
- Step 2: Read the manuscript
- Step 3: Identify Concepts
- Step 4: Generate Output
- Filtering Rules
- Integration with bip
- Example Session
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"
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.
