Thank you for your interest in contributing to Skybridge! Every contribution helps make this framework better for everyone building ChatGPT and MCP Apps.
New here? Please drop by our Discord and introduce yourself before opening your first PR. It helps us know who you are and lets us point you toward good first issues.
- Node.js 24+
- pnpm 10+ (run
corepack enableto use the version specified in package.json)
# Clone the repository
git clone https://github.com/alpic-ai/skybridge.git
cd skybridge
# Install dependencies
pnpm install| Command | Description |
|---|---|
pnpm test |
Run all tests (unit + lint) |
pnpm test:unit |
Run unit tests only |
pnpm build |
Compile packages |
pnpm docs:dev |
Start docs dev server |
Open an issue with:
- A clear, descriptive title
- Steps to reproduce the problem
- Expected vs actual behavior
- Your environment (Node version, OS, Browser version, etc.)
Start a discussion to share your idea. This helps gather community feedback before implementation.
- Fork the repository
- Create a feature branch (
git checkout -b feat/my-feature) - Make your changes
- Ensure tests pass (
pnpm test) - Commit with a clear message
- Push and open a PR
Keep PRs focused on a single change. For larger features, consider opening an issue first to discuss the approach.
Every PR is reviewed by Greptile. If the check does not return 5/5, address each comment: either fix the issue or reply on the comment explaining why you disagree. Unanswered Greptile feedback will block merge.
When your PR changes the public API of packages/core (exports from src/server/index.ts, src/web/index.ts, or the CLI commands in src/commands/), it must also update:
skills/references (notablychatgpt-app-builder)docs/, especiallyapi-reference/andguides/
Reviewers will block PRs that touch the public API without these updates.
AI tools are welcome to help you write code. What we ask is that you own what you submit: if you use an AI assistant, please make sure you understand every line, run the tests, and feel confident standing behind the change. PRs that look like unreviewed AI output (untested code, hallucinated APIs, boilerplate without clear intent) will be sent back for rework.
If your PR affects the documentation, read docs/DOCUMENTATION-MANIFESTO.md before you start. It is the must-read guide for new documentation contributors and covers documentation philosophy, writing guidelines, and the docs change checklist.
- Write TypeScript with proper types (avoid
any) - Add tests for new functionality
- Follow existing code patterns and conventions
- Keep commits atomic and well-described
By contributing, you agree that your contributions will be licensed under the ISC License.