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.
npx agentmods add instructions/jstuart0/agentpulse/agents-mdgit clone --depth 1 https://github.com/jstuart0/agentpulseWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01727 | $0.01727 |
| Opus 5 | $0.00864 | $0.00864 |
| Sonnet 5 | $0.00345 | $0.00345 |
| Haiku 4.5 | $0.00173 | $0.00173 |
Grade A, and why
agentpulse 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.
How it starts
The opening of the file, as written. The whole thing — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md - AgentPulse
AgentPulse is the command center for AI coding agents across all your machines. It monitors, orchestrates, and manages Claude Code and Codex CLI sessions from a single dashboard with chat-style prompt history, session notes, templates, managed launches, and remote access from any device.
Tech Stack
- Runtime: Bun
- Backend: Hono (HTTP framework)
- Frontend: React 19 + Vite + TailwindCSS
- State: 8 Zustand stores
- Database: SQLite (Drizzle ORM); PostgreSQL not implemented
- Real-time: WebSocket (native Bun) + 3s polling fallback
- Linting: Biome
Commands
bun install # Install dependencies
bun run dev # Start dev server (API + Vite)
bun run dev:server # Start API server only
bun run dev:web # Start Vite frontend only
bun run dev:supervisor # Start local supervisor only (watch mode)
bun run build # Production build
bun run start # Start production server
bun run check # Run Biome linter
bun run check:fix # Run Biome linter with auto-fix
bun run check:architecture # Run all architecture guard scripts
bun run typecheck # TypeScript type checking
bun run test # Run test suite (bun test)
bun run test:watch # Run tests in watch mode
Project Structure
src/
server/
routes/ ~26 route files: ingest.ts, sessions.ts, settings.ts, auth.ts,
launches.ts, templates.ts, projects.ts, search.ts, setup.ts,
ask.ts, channels.ts, labs.ts, supervisors.ts, health.ts,
internal.ts, csp-report.ts, ingest-counters.ts,
ai-gates.ts, ai-inbox.ts, ai-intelligence.ts,
ai-providers.ts, ai-status.ts, ai-watcher.ts
services/ ~30 service files + subdirs: ai/, ask/, channels/, projects/,
search/, templates/, util/, workspace/,
event-processor.ts, session-tracker.ts, name-generator.ts,
telemetry.ts, settings-service.ts, labs-service.ts,
launch-dispatch.ts, launch-validator.ts, notifier.ts, ...
db/ Drizzle schema, client, append-only migrations
auth/ API key auth, Authentik header trust middleware
ws/ WebSocket pub/sub
web/
pages/ AskPage, DashboardPage, DigestPage, HostsPage, InboxPage,
LaunchDetailPage, LoginPage, ProjectsPage, SearchPage,
SessionDetailPage, SettingsPage, SetupPage, TemplatesPage
components/ SessionCard, SessionGrid, StatusBadge, Layout, PlanTracker,
IntelligenceBadge, MarkdownContent, TopBar, WsStatusChip,
+ subdirs: inbox/, session-detail/, settings/, templates/
stores/ 8 stores: connection-store, event-store, labs-store,
projects-store, session-store, tabs-store, ui-prefs-store,
user-store
hooks/ useWebSocket, useSessions
lib/ api.ts (single API client), parseDate.ts
shared/ Shared types (session-state.ts, etc.)
supervisor/ Local supervisor process (launch/control plane)
deploy/k8s/ Kubernetes manifests (namespace, deployment, service,
ingressroute, middleware, networkpolicy, backup PVC, etc.)
scripts/ setup-relay.sh, setup-hooks.sh, relay.ts, install-local.sh,
install-local.ps1, build-and-push.sh, statusline.sh,
check-installers.ts, smoke-parsers.ts, ai-live-test.ts
snippets/ CLAUDE.md/AGENTS.md snippets for semantic status reporting
telemetry-worker/ Cloudflare Worker for anonymous telemetry collection
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.
- 2d ago First seen · 152 lines · 1,727 tokens per session scan A 43ae92d40c9f
agentpulse AGENTS.md is an instructions file published in the GitHub repository jstuart0/agentpulse (16 stars, last pushed 1mo ago), licensed MIT. It adds 1,727 tokens to every session, about $0.0086 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-30.
Other instructions, from other repositories
codex-studio AGENTS.md
Instructions for gvastethecreator/codex-studio, covering codex studio agent guide, current direction, setup / first run, required context pass and commands.
remote-dev-containers AGENTS.md
Instructions for eXPerience83/remote-dev-containers, covering agents.md, sources of truth, mandatory pr discipline, security invariants and runtime implementation rules.
loop AGENTS.md
Instructions for axeldelafosse/loop, covering quick commands, repo workflows, coding standards, cli-specific notes and testing.
deepwiki-by-cc CLAUDE.md
Instructions for andyhtran/deepwiki-by-cc, covering commands, type checking and testing.
session-map AGENTS.md
Instructions for hao-cyber/session-map, covering sessionmap 项目指令, 产品事实源, 模块文档索引, 问题求解与文档演进 and 架构取向与变更门禁.
agent-thread AGENTS.md
AGENTS.md instructions for amalshaji/agent-thread, covering agent instructions, tooling, project commands, release workflow and architecture.