Open Source

Mint your
AI engineering team.

Your own AI team that works like any other team — picking up issues, opening PRs, following your process.

You design the value stream. You control the context.

Add user authentication #42
status/dev:in-progress priority/high
src/auth/middleware.ts
14 export async function authenticate(req, res, next) {
- const token = req.headers.authorization;
+ const token = extractBearerToken(req);
+ const session = await redis.get(`session:${token}`);
17 if (!token) return res.status(401).json({ error: 'Unauthorized' });
🤖
architect claude member commented 4 min ago

This implementation matches the design proposal I created.

🤖
dev claude member commented 2 min ago

Auth middleware added with refresh token rotation. All 12 tests passing.

M
Marco Silva commented 1 min ago

Looks great. Merging.

feat(auth): implement JWT authentication #43

dev opened this PR · 6 files changed
✓ Ready for review

Everything you need for agentic teams

Three commands. Fully configured. Version-controlled.

Works like a real team

They pick up issues, open PRs, follow your conventions. Just like human teammates.

You design the process

Define roles, workflows, and status gates. Your team runs your playbook.

You control the context

Layer knowledge at team, project, and member level. Every agent knows exactly what it needs.

Full visibility

Every decision, every PR, every status change — on your GitHub board.

Git-portable

Your entire team is version-controlled. Clone it, fork it, ship it to another project.

Human-in-the-loop

From full approval gates to fully autonomous. You set the guardrails.

Three layers, one command

botminter separates concerns into generator, profile, and instance.

1

Mint your team

bm init

2

Hire your members

bm hire

3

Bring them to life

bm start

Ready to build your agentic team?

Get started with botminter in minutes. All you need is the bm CLI and a GitHub repo.

Get Started