Wiki Ingester
Pull a wiki into a structured, validated corpus an agent can reliably query and cite.
Before & after
Same prompt, same agent — the only difference is the skill.
I can help you set up a process wiki for your engineering team. There are several tools you could use for this—Notion, Confluence, GitBook, or a self-hosted wiki. Do you have a preference on which platform? Also, what are the main processes you want to document—deployments, on-call runbooks, incident response, code review standards? I could help you structure the wiki with a clear hierarchy and suggest templates for different types of documentation. Do you want me to outline what should go into each section, or would you prefer I start with one runbook example?
ENGINEERING WIKI STRUCTURE ===== TAXONOMY ===== Root: /engineering /engineering/onboarding • First day checklist • Development environment setup • Access provisioning (GitHub, AWS, etc.) • Tools walkthrough (Slack, Notion, CI/CD) /engineering/runbooks • Deployments ├ Staging deploy checklist ├ Production deploy checklist └ Rollback procedure • Incident response ├ High-severity incident playbook ├ On-call escalation matrix └ Post-mortem template • On-call duties ├ On-call schedule ├ Alert routing rules └ Common alert responses /engineering/architecture • System design overview • API specifications • Database schema • Deployment architecture (diagram) • Third-party integrations /engineering/standards • Code review guidelines • Commit message format • Naming conventions • Testing requirements (unit + integration) /engineering/troubleshooting • Common issues + fixes • Performance tuning guide • Log analysis playbook ===== TEMPLATE: RUNBOOK ===== Filename: /engineering/runbooks/deployment-production.md PRODUCTION DEPLOYMENT Prerequisites • You have merge permissions on main • You have AWS access (prod account) • Latest code is pushed to main • All tests pass on CI • Staging deployment completed and verified Step 1: Verify Pre-deployment → Run: npm run build → Run: npm run test:integration → Check: Are all high-priority PRs merged? Step 2: Deploy to Production → Command: npm run deploy --env=prod → Monitor: Deployment logs in CloudWatch → Wait for: Green status on all health checks Step 3: Smoke Test → Open prod.ourapp.com → Log in as test@ourapp.com → Perform 5 critical flows (signup, purchase, export) → Check database for new records Step 4: Monitor Metrics (next 10 minutes) → CPU usage: Should stay < 60% → Error rate: Should stay < 0.1% → Response time p95: Should stay < 300ms → If anomaly detected → Go to ROLLBACK section Step 5: Notify → Post in #deployments: Production deployed by Name at Time. Version: git tag ROLLBACK PROCEDURE (if anything goes wrong) → Command: npm run rollback --env=prod --to-version=previous-tag → Verify health checks (same as Step 3) → Post in #incidents: Rolled back to Version due to Reason Estimated time: 15 minutes On-call escalation: If unclear, page DevOps lead ===== TEMPLATE: INCIDENT RESPONSE ===== Incident severity: HIGH Detection: Error rate > 1% for 2 min Immediate actions (first 5 min): 1. Page on-call engineer 2. Post in #incidents: Production error spike detected 3. Gather: Error logs, affected users, root cause hypothesis Investigation (next 10 min): • Query logs: SELECT * FROM errors WHERE severity = HIGH ORDER BY timestamp DESC LIMIT 100 • Check metrics: CPU, memory, database connections • Review recent deployments: Was anything shipped in last hour? Resolution (parallel to investigation): • If deployment caused: Rollback (see runbook) • If database issue: Trigger failover (see runbook) • If third-party API: Switch to backup provider Post-incident: → Schedule post-mortem within 24 hours → Document: Timeline, root cause, prevention step ===== SEARCHABILITY ===== Each page tagged with: Category, Severity, Time-to-complete Example: Deployment checklist tagged Deployment Low-risk 15 min Search index updated daily Common searches alias to fastest answer (e.g., how do I deploy → /runbooks/deployment-production)
About this skill
name: wiki-ingest description: Use when Structured Claude skill that gives Claude a repeatable workflow for wiki ingest.
Wiki Ingest
One of 337+ skills in the original author's multi-agent claude-skills mega-collection (~19k GitHub stars). Packages the Wiki Ingest workflow with its own instructions and validation so outputs stay consistent.
What you get
- Public GitHub repo (alirezarezvani/claude-skills)
- the wiki-ingest skill folder with SKILL.md. Part of a 337-skill / 30-agent / 70-command install.
Customize your output
- Fork the repo and adapt the skill's instructions and references to your workflow.
Example output
Activates automatically when your request matches Wiki Ingest; chains with the other skills, agents, and commands in the collection.
Best for
Creators, builders, and teams using Claude Code.
SKILL.md preview
---
name: wiki-ingest
description: Use when you need a repeatable workflow for ingesting a wiki or internal knowledge base into a structured, queryable format.
version: 1.0.0
category: AI Agents / Development
author: AgentVolt
license: proprietary
tags:
- ai-agents
- development
---
# Wiki Ingest
Packages a repeatable workflow for pulling a wiki into a structured, validated corpus an agent can reliably query and cite.
## When to use
… (sign up to view the full skill)More ai & agents skills
View all AI & Agents skills →Skill Status Report
Scan every skill in a project and report which pass validation, which are stale, and which lack required metadata.
Skills Scaffolder
Scaffold a new skills directory — folder structure, metadata, a baseline validation pass — with the right conventions from day one.
Research Bundle
Run a multi-step research task as one pipeline: gather sources, extract findings, validate consistency, emit one structured bundle.
Workspace Admin
Administer a Cowork or Claude workspace — settings, access, configuration — with every change scoped and verified.