Agent Bridge — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Agent Bridge (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A fast, simple Kanban board where humans and AI agents collaborate on tasks. AgentBridge runs on Cloudflare Workers and speaks the Model Context Protocol (MCP), so Claude, Cursor, Codex, and your team can work from the same source of truth.
Live demo: https://agent-bridge.0xkaz.com/
/mcp)list_orgs — list organizationslist_projects — list projects in an organizationcreate_task — create a task in a projectupdate_status — change a task statuscomment — add a comment to a taskMost endpoints require Authorization: Bearer <token>. Invitation info and accept endpoints are public.
| Method | Endpoint | Description |
|---|---|---|
| POST | /api/auth/google | Sign in with a Google ID token |
| GET | /api/auth/me | Current user |
| GET | /api/orgs | List organizations |
| POST | /api/orgs | Create organization |
| PATCH | /api/users/me/org | Switch active organization |
| GET | /api/orgs/:org/projects | List projects |
| POST | /api/orgs/:org/projects | Create project |
| GET | /api/projects/:project | Get project |
| GET | /api/projects/:project/columns | List columns/lists |
| POST | /api/projects/:project/columns | Create column/list |
| PATCH | /api/projects/:project/columns/:column | Rename column/list |
| PATCH | /api/projects/:project/columns/:column/position | Reorder column/list |
| DELETE | /api/projects/:project/columns/:column | Archive empty column/list |
| GET | /api/projects/:project/tasks | List tasks |
| POST | /api/projects/:project/tasks | Create task |
| PATCH | /api/tasks/:task | Move task to another column/list |
| GET | /api/projects/:project/history | Project activity history |
| GET | /api/tasks/:task/comments | List comments |
| POST | /api/tasks/:task/comments | Add comment |
| GET | /api/tokens | List API/MCP tokens |
| POST | /api/tokens | Generate token |
| DELETE | /api/tokens/:id | Revoke token |
| POST | /api/orgs/:org/invitations | Invite a user to an organization |
| GET | /api/orgs/:org/invitations | List pending invitations |
| GET | /api/invitations/:token | Get invitation info (public) |
| POST | /api/invitations/:token/accept | Accept an invitation (public) |
| GET | /api/events?token=<token> | SSE event stream |
npm install
cp .env.example .env
cp wrangler.example.toml wrangler.toml
# Edit .env with your Google OAuth client ID
# Edit wrangler.toml with your Cloudflare account_id, D1 database_id, and custom domain
npm run db:seedThis app uses Google Identity Services (ID token flow). You do not need to configure a redirect_uri.
http://localhost:8787 (local wrangler dev)https://<your-worker>.workers.dev (production).env as VITE_GOOGLE_CLIENT_ID and into .dev.vars as GOOGLE_CLIENT_IDwrangler.example.toml to wrangler.toml and fill in your Cloudflare account_id, D1 database_id, and custom domainThe Client Secret is not used by this app because verification is done with Google's public JWKS.
npm run devOpen http://localhost:8787 and sign in with Google.
For MCP clients, configure the endpoint:
{
"mcpServers": {
"agentbridge": {
"url": "http://localhost:8787/mcp"
}
}
}Generate an API token on the Settings page and use it as Authorization: Bearer <token>.
make e2eThis starts the dev server automatically and runs Playwright against Chromium.
src/db/schema.sql only contains the final schema for fresh databases. If you are updating an existing D1 database from a version that stored plaintext token values, run the token-hash migration before deploying:
# Local
make db-migrate-token-hash
# Remote (production)
make db-migrate-token-hash-remoteThese commands hash any remaining plaintext tokens, then recreate the tokens table with token_hash only.
npm run deployBefore deploying, make sure wrangler.toml is filled in (see Setup step 4).
Set secrets:
wrangler secret put GOOGLE_CLIENT_IDmake lint — TypeScript type checkmake test — run testsmake build — build frontendmake db-seed — apply D1 schema locallymake db-migrate-token-hash — migrate local D1 tokens to hashed schemamake db-migrate-token-hash-remote — migrate remote D1 tokens to hashed schemamake e2e — run Playwright end-to-end testsmake dev — start dev serverMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.