← Back to Skills Marketplace
willoscar

Citation Injector

by WILLOSCAR · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
148
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install citation-injector
Description
Apply a `citation-diversifier` budget report by injecting *in-scope* citations into an existing draft (NO NEW FACTS), so the run passes the global unique-cit...
README (SKILL.md)

Citation Injector (deterministic baseline edits; budget-as-constraints)

Purpose: make the pipeline converge when the draft is:

  • locally citation-dense but globally under-cited (too few unique keys), or
  • overly reusing the same citations across many subsections.

This skill is intentionally conservative and scriptable:

  • the script edits output/DRAFT.md directly using the budget report as constraints
  • injections stay evidence-neutral (NO NEW FACTS) and use only in-scope keys already listed for each H3

Inputs

  • output/DRAFT.md
  • output/CITATION_BUDGET_REPORT.md (from citation-diversifier)
  • outline/outline.yml (H3 id/title mapping)
  • citations/ref.bib (must contain every injected key)

Outputs

  • output/DRAFT.md (updated in place)
  • output/CITATION_INJECTION_REPORT.md (PASS/FAIL + what you changed)

Non-negotiables (NO NEW FACTS)

  • Only inject keys listed for that H3 in the budget report.
  • Do not introduce new numbers, new benchmarks, or superiority claims.
  • Do not add narration templates (This subsection ..., Next, we ...).
  • Do not produce cite dumps like [@a; @b; @c] as the only citations in a paragraph.

Paper-voice injection patterns (safe sentence shapes)

Use these as sentence intentions (paraphrase; do not copy verbatim).

  1. Axis-anchored exemplars (preferred)
  • Systems such as X [@a] and Y [@b] instantiate \x3Caxis/design point>, whereas Z [@c] explores a contrasting point under a different protocol.
  1. Parenthetical grounding (short, low-risk)
  • ... (e.g., X [@a], Y [@b], Z [@c]).
  1. Cluster pointer + contrast hint
  • Representative implementations span both \x3Ccluster A> (X [@a], Y [@b]) and \x3Ccluster B> (Z [@c]), suggesting that the trade-off hinges on \x3Clens>.
  1. Decision-lens pointer
  • For builders choosing between \x3CA> and \x3CB>, prior systems provide concrete instantiations on both sides (X [@a]; Y [@b]; Z [@c]).
  1. Evaluation-lens pointer (still evidence-neutral)
  • Across commonly used agent evaluations, systems such as X [@a] and Y [@b] illustrate how \x3Clens> is operationalized, while Z [@c] highlights a different constraint.
  1. Contrast without list voice
  • While many works operationalize \x3Ctopic> via \x3Cmechanism> (X [@a]; Y [@b]), others treat it as \x3Calternative> (Z [@c]), which changes the failure modes discussed later.

Anti-patterns (high-signal “budget dump” voice)

Avoid these stems (they read like automated injection):

  • A few representative references include ...
  • Notable lines of work include ...
  • Concrete examples include ...

If your draft contains these, rewrite them immediately using the patterns above (keep citation keys unchanged).

Placement guidance

  • Prefer inserting citations where the subsection already states a concrete contrast or decision lens.
  • If you must add a new sentence/mini-paragraph, place it early (often after paragraph 1) so it reads as positioning, not as an afterthought.
  • Keep injections subsection-specific: mention the subsection lens (H3 title / contrast_hook) so the same sentence cannot be copy-pasted into every H3.

Workflow

  1. Read the budget report (output/CITATION_BUDGET_REPORT.md)
  • Treat Global target (policy; blocking) as the PASS line for the pipeline gate (derived from queries.md:citation_target; A150++ default: recommended).
  • If Gap: 0, do nothing: write a short PASS report and move on.
  • Otherwise, for each H3 with suggested keys, pick enough keys to close the gap to target:
    • small gaps: 3-6 keys / H3
    • A150++ gaps: often 6-12 keys / H3 Prefer keys that are unused globally and avoid repeating the same new keys across many H3s.
  1. Inject in the right subsection
  • Use outline/outline.yml to confirm H3 ordering and ensure the injected sentence lands inside the correct ### subsection.
  1. Inject with paper voice
  • Prefer one short, axis-anchored sentence over a long enumerator sentence.
  • Keep injections evidence-neutral (NO NEW FACTS) and avoid new numbers.
  • Before you commit an injected key, confirm it exists in citations/ref.bib.
  1. Write output/CITATION_INJECTION_REPORT.md
  • Record which H3s you touched and which keys were added.
  • Mark - Status: PASS only when the global target is met.
  1. Verify
  • Rerun the validator script (below) to recheck the global target.
  • Then run draft-polisher to smooth any residual injection voice (citation keys must remain unchanged).

Done criteria

  • output/CITATION_INJECTION_REPORT.md exists and is - Status: PASS.
  • pipeline-auditor no longer FAILs on “unique citations too low”.

Script (optional; deterministic injector + validator)

You usually do not run this manually; it exists so a pipeline runner can deterministically apply a baseline injection and validate the target.

Quick Start

  • python scripts/run.py --workspace workspaces/\x3Cws>

All Options

  • --workspace \x3Cdir>
  • --unit-id \x3CU###> (optional; for logs)
  • --inputs \x3Csemicolon-separated> (rare override; prefer defaults)
  • --outputs \x3Csemicolon-separated> (rare override; default validates output/CITATION_INJECTION_REPORT.md)
  • --checkpoint \x3CC#> (optional)

Examples

  • After you generate the budget report and want the script to apply the baseline injection:
    • python scripts/run.py --workspace workspaces/\x3Cws>
Usage Guidance
This skill appears coherent and implements only local edits with no network calls or credential requests. Before installing or running: 1) Inspect the injection report output and back up output/DRAFT.md (the tooling includes atomic write/backup helpers but make an independent copy). 2) Verify citations/ref.bib contains every key you expect to be injected — the script will only inject keys present there. 3) If you run this as part of a pipeline, note that citation-injector is intended to run automatically in the C5 draft stage and will modify files in the workspace; run it first on a disposable workspace or branch until you are satisfied with the edits. 4) If you want extra safety, run the included script with a workspace copy and review output/CITATION_INJECTION_REPORT.md and the diff for output/DRAFT.md before accepting changes.
Capability Analysis
Type: OpenClaw Skill Name: citation-injector Version: 1.0.0 The citation-injector skill is a utility designed to automate the insertion of citations into a research draft to meet global citation targets. The logic in scripts/run.py and the supporting tooling modules (common.py, quality_gate.py, etc.) is focused entirely on parsing local Markdown and JSONL files, applying deterministic templates for citation injection, and validating the output against quality gates. There is no evidence of network activity, data exfiltration, or malicious command execution; the use of subprocess.run in executor.py is restricted to running the skill's own internal scripts within the workspace.
Capability Assessment
Purpose & Capability
Name/description (inject in-scope citations per a budget report) lines up with what is required and performed: the SKILL.md and scripts operate on workspace files (output/DRAFT.md, output/CITATION_BUDGET_REPORT.md, outline/outline.yml, citations/ref.bib). No unrelated credentials, binaries, or external services are requested.
Instruction Scope
Runtime instructions and the bundled scripts read and write files within the declared workspace paths and implement the described constraints (only use keys from citations/ref.bib, obey budget report, no new facts). The skill does not attempt to read unrelated system config or environment variables. It does make in-place edits to output/DRAFT.md (explicitly documented).
Install Mechanism
No install spec provided (instruction-only + bundled Python scripts). Required runtime is python/python3 only — appropriate and proportionate for the included Python scripts. Nothing is downloaded or extracted from external URLs.
Credentials
The skill requests no environment variables, no credentials, and only needs filesystem access to the workspace files it documents. The requested access is proportional to the stated task of local citation injection.
Persistence & Privilege
The skill is not marked always:true and does not request elevated system privileges, but it performs in-place modifications to output/DRAFT.md and writes an output/CITATION_INJECTION_REPORT.md. This file-writing behavior is expected for the skill's purpose but is an important operational consideration (inspect or run in a sandbox/branch first).
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install citation-injector
  3. After installation, invoke the skill by name or use /citation-injector
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of the citation-injector skill: - Injects in-scope citations into an existing draft according to a citation budget report, with no new facts or citation dumps. - Ensures global unique-citation targets are met, reducing over-reuse and avoiding automated-sounding citation lists. - Only uses citation keys listed for each H3 and present in the reference file. - Provides detailed placement and stylistic guidance for evidence-neutral, paper-voice injections. - Outputs an updated draft and injection report indicating all changes and pass/fail status. - Includes an optional deterministic script for automated application and validation.
Metadata
Slug citation-injector
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Citation Injector?

Apply a `citation-diversifier` budget report by injecting *in-scope* citations into an existing draft (NO NEW FACTS), so the run passes the global unique-cit... It is an AI Agent Skill for Claude Code / OpenClaw, with 148 downloads so far.

How do I install Citation Injector?

Run "/install citation-injector" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Citation Injector free?

Yes, Citation Injector is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Citation Injector support?

Citation Injector is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Citation Injector?

It is built and maintained by WILLOSCAR (@willoscar); the current version is v1.0.0.

💬 Comments