AI Agent for Documentation Generation
Auto-generates docs from code while preventing sensitive data leaks.
Engineering
Code Documentation
Automation
The problem
Traditional doc generators require full repository access, risking accidental exposure of secrets in comments or config files. Cloud-based tools send your code to third parties, while local scripts often have broad filesystem permissions.
How ConspiracyOS handles it
This agent gets read-only access to specified source directories. It can analyze code structure and comments, but cannot access unrelated files, environment variables, or network resources. Generated docs are output to a designated directory.
What this agent can't do
- Access files outside the /src directory you specify
- Read environment variables or system configurations
- Connect to external services or APIs
- Modify source files or commit changes
These aren't trust-based restrictions. The operating system enforces them.
What you get
- Always-updated API docs without manual maintenance
- Zero risk of leaking secrets from other project files
- Local processing - no code sent to third parties
- Automatic version-tagged documentation
Get started in 2 minutes
Tell your concierge what you need
conos "conos agent:create --name docgen --scope 'read-only:/src' --task 'Generate API docs from src/**/*.js'"
ConspiracyOS sets up the right agent with the right permissions automatically.