devcontext

FAQ

Frequently asked questions about DevContext.

General

What is 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.

Why use DevContext?

Is it free?

Yes, DevContext is 100% free and open source under MIT license.

Installation

How do I install DevContext?

pip install devcontext

What are the requirements?

Can I install from source?

git clone https://github.com/jhony91792-oss/devcontext.git
cd devcontext
pip install -e .

Usage

How do I use it?

# Generate context
devcontext generate .

# Copy to clipboard for AI
devcontext generate . -f compact | pbcopy

What formats are supported?

How do I exclude directories?

Create a .devcontextrc file:

{
    "skip_dirs": ["node_modules", ".git"]
}

Troubleshooting

No files found

Slow on large projects

Memory issues

GitHub

How do I star the project?

Visit https://github.com/jhony91792-oss/devcontext and click the star button.

How do I report issues?

Open an issue at https://github.com/jhony91792-oss/devcontext/issues

Can I contribute?

Yes! Open a pull request. See CONTRIBUTING.md for details.