bark-edgeone AGENTS.md

bark-edgeone AGENTS.md is an instructions file for Codex, OpenCode from AkinoKaede/bark-edgeone. It costs 1,548 tokens per session, scanned A, original, Apache-2.0.

A project guide for AI coding agents working on Bark EdgeOne, a TypeScript push-notification server for EdgeOne edge functions with Apple Push Notification service support.

In plain words
What is it for?
Use it when changing Bark EdgeOne so agents can follow its conventions, run Vitest tests, check code quality, and start the local EdgeOne development server.
Why use it?
It gives agents the project context and the exact commands used to build, test, check types, lint, and format the code.

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/akinokaede/bark-edgeone/agents-md
Clone the repo
git clone --depth 1 https://github.com/AkinoKaede/bark-edgeone

Made for: Codex, OpenCode.

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 bark-edgeone AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/akinokaede/bark-edgeone/agents-md.svg)](https://agentmods.dev/instructions/akinokaede/bark-edgeone/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/akinokaede/bark-edgeone/agents-md"><img src="https://agentmods.dev/badge/instructions/akinokaede/bark-edgeone/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,548 This file is loaded in full into every session.
When invoked 1,548 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.01548 $0.01548
Opus 5 $0.00774 $0.00774
Sonnet 5 $0.00310 $0.00310
Haiku 4.5 $0.00155 $0.00155

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

Security

Grade A, and why

bark-edgeone 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 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.

AGENTS.md · 213 lines

How it starts

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

Agent Guidelines for Bark EdgeOne

This document provides coding guidelines and conventions for AI agents working on the Bark EdgeOne codebase.

Project Overview

Bark EdgeOne is a push notification server implementation for EdgeOne Pages Edge Functions, providing APNs integration with global edge deployment.

Tech Stack: TypeScript, EdgeOne Pages, Vitest, ESLint, Prettier

Build, Test, and Lint Commands

Build

npm run build              # Compile TypeScript to dist/
npm run type-check         # Type check without emitting files

Testing

npm test                   # Run all tests once
npm run test:watch         # Run tests in watch mode
npm run test:coverage      # Run tests with coverage report

# Run a single test file
npx vitest run src/utils/__tests__/string.test.ts

# Run tests matching a pattern
npx vitest run -t "isEmpty"

Linting and Formatting

npm run lint               # Check for linting errors
npm run lint:fix           # Auto-fix linting errors
npm run format             # Format all files
npm run format:check       # Check formatting without changes

Local Development

npx edgeone pages dev          # Start local dev server on http://localhost:8788

Deploy to EdgeOne Pages

npx edgeone pages deploy          # Start local dev server on http://localhost:8088

Project Structure

bark-edgeone/
├── src/                   # Core source code
│   ├── apns/             # APNs integration (JWT, payload, push)
│   ├── handlers/         # Business logic handlers
│   ├── types/            # TypeScript type definitions
│   └── utils/            # Utility functions
├── edge-functions/        # EdgeOne edge function endpoints
│   └── api/              # API route handlers
├── node-functions/        # Node.js serverless functions
├── dist/                 # Compiled output
└── __tests__/            # Test files (co-located with source)

Code Style Guidelines

Imports

  • Use ES6 import syntax
  • Import types with type keyword: import type { Foo } from './types'
  • Group imports: external packages first, then internal modules
  • Use relative paths for local imports

Read the full file on GitHub · 213 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 · 213 lines · 1,548 tokens per session scan A 599f60a8ebfd

Subscribe to this mod's changes

bark-edgeone AGENTS.md is an instructions file published in the GitHub repository AkinoKaede/bark-edgeone (5 stars, last pushed 7mo ago), licensed Apache-2.0. It adds 1,548 tokens to every session, about $0.0077 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.

Related

Other instructions, from other repositories

Heeler CLAUDE.md

Claude Code instructions for ZingerLittleBee/Heeler, covering heeler, architecture, load-bearing herdr facts, conventions and agent skills.

ZingerLittleBee/Heeler · 4,073 tokens

Heeler AGENTS.md

AGENTS.md instructions for ZingerLittleBee/Heeler, a project described as: Native iOS agent console for herdr — watch and drive the coding agents on your machines over SSH, with a real libghostty terminal, QR pairing, and push notifications when an agent needs you.

ZingerLittleBee/Heeler · 4 tokens

trigger.dev AGENTS.md

AGENTS.md instructions for triggerdotdev/trigger.dev, covering agents.md, build and development commands, build packages (required before running), verifying changes and apps and internal packages — use typecheck.

triggerdotdev/trigger.dev · 3,383 tokens

trigger.dev copilot-instructions.md

Copilot instructions for triggerdotdev/trigger.dev: This is the repo for Trigger.dev, a background jobs platform written in TypeScript. Our webapp at apps/webapp is a Remix 2.1 app that uses Node.js v20. Our SDK is an isomorphic TypeScript SDK at packages/trigger-sdk. Always prefer using isomorphic code like fetch…

triggerdotdev/trigger.dev · 140 tokens

claude-code-apple-skills CLAUDE.md

Claude Code instructions for rshankras/claude-code-apple-skills, covering claude.md, repository purpose, architecture, skill structure and yaml frontmatter (required).

rshankras/claude-code-apple-skills · 859 tokens

microfeed AGENTS.md

AGENTS.md instructions for microfeed/microfeed, covering repository guidance, development workflow, instance management and cloudflare deployment, source architecture and theme repositories.

microfeed/microfeed · 2,529 tokens