wiki-list

Manage a pending ingestion queue for a topic wiki with add, process, and show modes.

Updated May 14, 2026
One-click install
npx skills add https://github.com/dadlabs-io/llm-wiki-bootstrap --skill wiki-list-dadlabs-io
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: wiki-list
Source: https://github.com/dadlabs-io/llm-wiki-bootstrap/tree/main/bootstrap/skills/wiki-list
Command: npx skills add https://github.com/dadlabs-io/llm-wiki-bootstrap --skill wiki-list-dadlabs-io

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Capturing links and files for a knowledge wiki usually forces an immediate, slow ingestion step. This Skill splits ingestion into a producer/consumer workflow: drop URLs, file paths, or pasted text onto a queue throughout the day, then batch-process the whole queue later. ## Core Features & Use Cases - Add mode: Writes a small Markdown ticket (<priority>-<timestamp>-<slug>.md) to _inbox/pending/ without fetching anything, and skips URLs already present in pending, proposed, wiki, or done folders. - Process mode: Drains the pending queue by running wiki-update.py per ticket, moving items to _inbox/done/ or _inbox/failed/ with .error sidecars, and regenerating the INDEX once at the end. Supports --dry-run and --limit N. - Show mode: Lists pending tickets with source URL, target folder, who added them, and when. - Use Case: While researching, you find five relevant articles during the day. Queue each with /wiki-list add, then run /wiki-list process in the evening to ingest them all in one batch. ## Quick Start Add this URL to the wiki list for my topic wiki, then show me everything currently pending in the queue.

Frequently Asked Questions about wiki-list

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I queue a URL for later ingestion into a wiki?▼

Run the add mode with the source URL, which writes a Markdown ticket to _inbox/pending/ without fetching anything. Optional folder, title, tags, and priority (1-5, default 3) can be set at capture time or filled in later at process time.

How do I batch process a pending wiki ingestion queue?▼

Run the process mode, which executes wiki-update.py on each ticket in filename order so lower priority numbers go first. Tickets move to _inbox/done/ on success or _inbox/failed/ with an .error sidecar, and the INDEX regenerates once at the end.

Does the wiki queue prevent adding duplicate URLs?▼

Yes. A URL already present in pending/, _inbox/proposed/, wiki/, or done/ (exact match) is not queued again, and the tool reports where it already exists instead of creating a duplicate ticket.

Can I test queue processing before running it for real?▼

Yes, process mode supports --dry-run to preview what would be ingested and --limit N to process only some items. A dry run is recommended when the pending queue holds more than about five items.

Why did a queued wiki item fail during processing?▼

Failed items are moved to _inbox/failed/ along with an .error sidecar file explaining the cause. The processor exits non-zero when any item fails, so check the sidecar files in that folder for details.