Thank you for your interest in contributing to the OpenShell Community ecosystem. This guide covers everything you need to get started.
- Sandbox images -- Add new domain-specific sandbox environments under
sandboxes/ - Skills -- Create agent skills and tool definitions inside a sandbox's
skills/directory - Bug fixes -- Fix issues in existing sandboxes, skills, or configurations
- Documentation -- Improve READMEs, guides, and usage examples
- Integrations -- Connect OpenShell to new tools, platforms, or workflows
All contributions to this project must include a Signed-off-by line in the commit message, certifying that you wrote or have the right to submit the code under the project's open-source license. This is the Developer Certificate of Origin (DCO).
Add the sign-off automatically with git commit -s:
git commit -s -m "Add new sandbox image"This appends a line like:
Signed-off-by: Your Name <your.email@example.com>
A DCO check runs on every pull request and will fail if any commit is missing the sign-off.
- Fork this repository
- Clone your fork locally
- Create a feature branch from
main
git clone https://github.com/<your-username>/OpenShell-Community.git
cd OpenShell-Community
git checkout -b my-featureEach sandbox lives in its own directory under sandboxes/:
sandboxes/my-sandbox/
Dockerfile
README.md
...
Requirements:
- A
Dockerfilethat builds cleanly - A
README.mddescribing the sandbox's purpose, usage, and any prerequisites - Keep images minimal -- only include what's needed for the workload
Skills live inside their sandbox's skills/ directory (e.g., sandboxes/openclaw/skills/my-skill/). Each skill should include:
- A
SKILL.mddescribing what it does and when to use it - Any supporting files the skill needs
- A README with usage examples
- Ensure your changes are focused -- one feature or fix per PR
- Include a clear description of what your PR does and why
- Test your changes locally before submitting
- Update any relevant documentation
- Follow existing naming conventions and directory structures
- Write clear commit messages
- Keep PRs small and reviewable
- Respond to review feedback promptly
Use GitHub Issues for bug reports and feature requests. Include:
- A clear title and description
- Steps to reproduce (for bugs)
- Expected vs. actual behavior
- Environment details (OS, Docker version, GPU, etc.)
By contributing, you agree that your contributions will be licensed under the Apache 2.0 License.