VaultysClaw copilot-instructions.md

VaultysClaw copilot-instructions.md is an instructions file for GitHub Copilot from vaultys/VaultysClaw. It costs 1,402 tokens per session, scanned A, original, MIT.

Repository instructions for VaultysClaw, a decentralized platform that coordinates AI agents. It is a monorepo, meaning several related packages are developed in one repository, using pnpm workspaces and Turborepo.

In plain words
What is it for?
Use them when changing the shared code, control-plane dashboard, agent controller, database access, or development workflow.
Why use it?
They explain how the packages fit together and which commands build, test, lint, and type-check the whole project or one package.

Instructions file for GitHub Copilot

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/vaultys/vaultysclaw/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/vaultys/VaultysClaw

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for VaultysClaw copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/vaultys/vaultysclaw/copilot-instructions.svg)](https://agentmods.dev/instructions/vaultys/vaultysclaw/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/vaultys/vaultysclaw/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/vaultys/vaultysclaw/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,402 This file is loaded in full into every session.
When invoked 1,402 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.01402 $0.01402
Opus 5 $0.00701 $0.00701
Sonnet 5 $0.00280 $0.00280
Haiku 4.5 $0.00140 $0.00140

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

Security

Grade A, and why

VaultysClaw copilot-instructions.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 4d 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.

.github/copilot-instructions.md · 96 lines

How it starts

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

VaultysClaw — Agent Instructions

Decentralized AI agent orchestration platform. Monorepo (pnpm workspaces + Turborepo) with three packages:

  • packages/shared — core types, security utils, channel protocol
  • packages/control-plane — Next.js App Router dashboard + WebSocket server (port 3000 / WS 8080)
  • packages/agent-controller — agent runtime CLI, tools, skills, memory

See CLAUDE.md for the full architecture overview.

Build & Test

pnpm install
pnpm build               # All packages (shared must build first — handled by Turborepo)
pnpm dev                 # All packages dev mode
pnpm vaultysclaw:dev     # Control plane only
pnpm dev -F @vaultysclaw/agent-controller

pnpm test                # Vitest, no watch (default config)
pnpm type-check
pnpm lint

Single test file: pnpm vitest run __tests__/channels.test.ts

See docs/QUICK_START.md for setup and docs/DEVELOPMENT.md for full dev workflow.

Key Architecture Decisions

  • ORM: Prisma with PostgreSQL. All DAOs live in packages/control-plane/db/ and use the Prisma client (db/client.ts). Schema in prisma/schema.prisma, migrations in prisma/migrations/. Never use raw SQL in route handlers — use the appropriate DAO.
  • Auth: Passwordless (VaultysId ECDSA challenge-response) via NextAuth. Each route handler calls getAuthContext() from @/lib/auth-utils — no middleware file.
  • WebSocket protocol: All messages are typed envelopes from packages/shared/src/channel-types.ts. Critical messages (policies, intents) carry ECDSA signatures verified before processing.
  • @/* alias: Only works in packages/control-plane (Next.js). Agent-controller uses relative imports.
  • Skills are pre-compiled JS: Skills discovered at runtime must be .js/.mjs files, not .ts.
  • Agent-controller SQLite: The agent-controller keeps its own local SQLite (agent.db) for identity, sessions, and memory — this is separate from the control plane's PostgreSQL.

Read the full file on GitHub · 96 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. 4d ago First seen · 96 lines · 1,402 tokens per session scan A ccd873afdefd

Subscribe to this mod's changes

VaultysClaw copilot-instructions.md is an instructions file published in the GitHub repository vaultys/VaultysClaw (77 stars, last pushed 8d ago), licensed MIT. It adds 1,402 tokens to every session, about $0.0070 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.