agentbox AGENTS.md

Repository instructions for developing Agentbox, a Go service and command-line tool with separate dashboard and Raycast clients. They explain the project layout, setup, verification, and component boundaries.

In plain words
What is it for?
Use them when changing or reviewing Agentbox backend, CLI, dashboard, Raycast extension, database migrations, integration tests, or npm packaging.
Why use it?
They help an agent find the right code and choose appropriate checks without treating the whole project as one codebase.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/amxv/agentbox/agents-md
Clone the repo
git clone --depth 1 https://github.com/amxv/agentbox

Made for: Codex, OpenCode.

Per session 1,111 This file is loaded in full into every session.
When invoked 1,111 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01111 $0.01111
Opus 5 $0.00556 $0.00556
Sonnet 5 $0.00222 $0.00222
Haiku 4.5 $0.00111 $0.00111

Measured 2d ago against content hash bd56ed3ce494, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

agentbox AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

AGENTS.md · 131 lines

How it starts

The opening of the file, as written. The whole thing — 131 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agentbox Agent Guide

Agentbox is a Go service and CLI with independent web and Raycast clients. Keep component boundaries obvious and use the smallest relevant verification loop while editing, then run the complete suite before shipping cross-cutting work.

Repository map

cmd/api/             Go backend executable and backend deployment config
cmd/agentbox/        native CLI executable
cmd/migrate/         explicit database migration command
internal/agentbox/   canonical product implementation shared by backend and CLI
migrations/          embedded ordered PostgreSQL migrations
apps/dashboard/      Next.js user/admin dashboard and current public web surfaces
apps/raycast/        independent Raycast extension
packaging/cli/       @amxv/agentbox npm distribution wrapper
tests/integration/   cross-component dashboard/backend contracts

The MCP server is part of the Go backend at /api/mcp; it is not a separate service. The dashboard proxies its /api/* routes to the Go backend. Raycast and the CLI are API clients of the same backend.

Within the Go implementation, follow the domain filenames instead of starting from a giant catch-all file:

  • internal/agentbox/db/repository_*.go contains PostgreSQL behavior by domain (threads, uploads, credentials, accounts, teams); the matching memory_*.go files mirror those behaviors for the in-memory repository. repository_helpers.go owns shared row scanners/value helpers, while repository.go owns the shared repository core.
  • internal/agentbox/service/{threads,uploads,credentials,accounts,sessions}.go contains product behavior; service.go owns the repository contract, shared types, and cross-domain helpers.
  • internal/agentbox/httpapi/server_{threads,credentials,auth,owner}.go contains HTTP handlers; server.go owns routing, middleware, parsing/error helpers, and response shaping.
  • Large Go tests are split by the same durable behavior areas. Prefer adding a test beside the behavior it exercises rather than growing a generic test file.

Read the full file on GitHub · 131 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 131 lines · 1,111 tokens per session scan A bd56ed3ce494

Subscribe to this mod's changes

agentbox AGENTS.md is an instructions file published in the GitHub repository amxv/agentbox (1 stars, last pushed 5d ago), licensed Apache-2.0. It adds 1,111 tokens to every session, about $0.0056 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.