Frequently asked questions about DevContext.
DevContext is a CLI tool that generates AI-ready context from codebases. Instead of manually explaining your project to an AI assistant, you run one command and get a complete context dump in 3 seconds.
Yes, DevContext is 100% free and open source under MIT license.
pip install devcontext
git clone https://github.com/jhony91792-oss/devcontext.git
cd devcontext
pip install -e .
# Generate context
devcontext generate .
# Copy to clipboard for AI
devcontext generate . -f compact | pbcopy
Create a .devcontextrc file:
{
"skip_dirs": ["node_modules", ".git"]
}
-a flag for analysis--max-depth to limit scan depthVisit https://github.com/jhony91792-oss/devcontext and click the star button.
Open an issue at https://github.com/jhony91792-oss/devcontext/issues
Yes! Open a pull request. See CONTRIBUTING.md for details.