Duyetbot Agent
Community

Fork & PR

Fork repo. Create feat/fix branch. Semantic commits. Run checks/tests. Push. Open PR. Sign CLA.

TL;DR: Fork duyetbot-agent. git checkout -b feat/my-feature. bun run check && bun run test. Semantic commit. Push. PR. ✅ CLA auto.

Table of Contents

Fork Repo

  1. Click Fork on GitHub.
  2. Clone your fork:
git clone https://github.com/YOUR_USERNAME/duyetbot-agent.git
cd duyetbot-agent
bun install

Create Branch

From CLAUDE.md:

git checkout -b feat/your-feature-name

Make Changes

Test & Commit

Pre-push enforces:

bun run check  # Lint + types
bun run test   # All tests
git add .
git commit -m "feat: add your feature"

Types: feat | fix | docs | test | refactor.

Push & PR

git push origin feat/your-feature-name

Open PR on GitHub. Link issues.

CLA

By contributing, agree MIT License per contributing.md.

Quiz: Commit for docs update?
A: docs: update guide

Pro Tip ✅: Read PLAN.md first.

CTA: Fork & PR now{{t('cta.fork')}}

Next: Git Hooks ->

On this page