From repo-to-content
Interactive setup for the repo-to-docs plugin — writes ~/.config/repo-to-docs/config.json with author details, default license, Typst footer toggles, index-repo publishing targets, and Google Drive settings. Use when the user says "configure repo-to-docs", "set up repo-to-docs", "add a new docs-index target", "change the default license", or is running any repo-to-docs skill for the first time and hits missing config.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin repo-to-contentThis skill uses the workspace's default tool permissions.
Create or update `~/.config/repo-to-docs/config.json` interactively.
Creates new Angular apps using Angular CLI with flags for routing, SSR, SCSS, prefixes, and AI config. Follows best practices for modern TypeScript/Angular development. Use when starting Angular projects.
Executes ctx7 CLI to fetch up-to-date library documentation, manage AI coding skills (install/search/generate/remove/suggest), and configure Context7 MCP. Useful for current API refs, skill handling, or agent setup.
Share bugs, ideas, or general feedback.
Create or update ~/.config/repo-to-docs/config.json interactively.
~/.config/repo-to-docs/config.json
Schema:
{
"author_name": "Your Name",
"author_url": "https://example.com",
"default_license": "MIT",
"generate_banner_if_missing": false,
"typst_footer_defaults": {
"show_page_numbers": true,
"show_repo_url": true,
"show_license": true,
"show_author": true
},
"index_repos": [
{
"name": "public",
"path": "/absolute/path/to/repo",
"default": true,
"gdrive_folder_id": null
}
],
"gdrive_default_folder_id": null,
"gdrive_mcp_server": "gws-personal"
}
~/.config/repo-to-docs/ exists (mkdir -p).author_name, author_urldefault_license (default "MIT")generate_banner_if_missing (y/N)typst_footer_defaults.* — four independent togglesindex_repos — offer Add / Edit / Remove / Skip. For each new entry, collect name, path, default, gdrive_folder_id (optional).gdrive_default_folder_id (optional)gdrive_mcp_server (default "gws-personal"; common alternatives: "gws-dsrholdings")index_repos[].path must exist. Warn but allow if missing.<path>/build-index.sh is missing — the repo-to-docs-index skill will still work but won't rebuild derived indices.index_repos[].default should be true. Auto-flip if more or none.If the user says "add an index repo X at /path" or "remove index repo X", edit only that entry and save — don't re-prompt other fields.