CodeWiki: Transform codebases into comprehensive documentation. Generate AI-powered documentation for your code repositories with support for Python, Java, JavaScript, TypeScript, C, C++, and C#.
(ctx)
| 13 | @click.version_option(version=__version__, prog_name="CodeWiki CLI") |
| 14 | @click.pass_context |
| 15 | def cli(ctx): |
| 16 | """ |
| 17 | CodeWiki: Transform codebases into comprehensive documentation. |
| 18 | |
| 19 | Generate AI-powered documentation for your code repositories with support |
| 20 | for Python, Java, JavaScript, TypeScript, C, C++, and C#. |
| 21 | """ |
| 22 | # Ensure context object exists |
| 23 | ctx.ensure_object(dict) |
| 24 | |
| 25 | |
| 26 | @cli.command() |
no outgoing calls
no test coverage detected