wiki
Originally fromyeachan-heo/oh-my-claudecode
Installation
SKILL.md
Wiki generation
Read a repository, then produce a set of interconnected documentation pages that explain what the code does and how it fits together. The output is a droid-wiki/ directory of markdown files, uploaded to Factory via droid wiki-upload.
1. Survey the repository
Before writing anything, build a mental model of the codebase. The survey has two passes: a structural scan and a deep code scan.
Pass 1: Structural scan
Read these files (when they exist):
README.md,AGENTS.md,CONTRIBUTING.md— project intent and conventionspackage.json,Cargo.toml,go.mod,pyproject.toml— dependencies and scriptsdocs/directory — existing documentation- Entry points (
src/index.ts,main.go,app.py, etc.) — how the application starts - CI/CD config (
.github/workflows/,.gitlab-ci.yml,Jenkinsfile,azure-pipelines.yml, etc.) - Build tool config (
webpack.config.*,vite.config.*,Makefile,build/,Gulpfile.*, etc.) - Lint/quality config (
eslint.config.*, custom lint plugins,rustfmt.toml,.golangci.yml, etc.)
Related skills
More from factory-ai/factory-plugins
no-use-effect
>-
285human-writing
|
126simplify
Review changed code for reuse, quality, and efficiency, then fix any issues found.
91frontend-design
|
85security-review
Scan code changes for security vulnerabilities using STRIDE threat modeling, validate findings for exploitability, and output structured results for downstream patch generation. Supports PR review, scheduled scans, and full repository audits.
73visual-design
|
71