proxypal AGENTS.md

A project instruction file describing ProxyPal, a desktop app built with a SolidJS frontend and Rust backend. It records the project structure, tools, commands, and coding style.

In plain words
What is it for?
Use it when working on ProxyPal features, checking its TypeScript or Rust code, running its development commands, or understanding where parts of the app belong.
Why use it?
It gives a coding agent the project-specific context needed to navigate the codebase and use the expected development commands.

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/heyhuynhgiabuu/proxypal/agents-md
Clone the repo
git clone --depth 1 https://github.com/heyhuynhgiabuu/proxypal

Made for: Codex, OpenCode.

Per session 716 This file is loaded in full into every session.
When invoked 716 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.00716 $0.00716
Opus 5 $0.00358 $0.00358
Sonnet 5 $0.00143 $0.00143
Haiku 4.5 $0.00072 $0.00072

Measured yesterday against content hash 53890878f2a0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

proxypal 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 yesterday.

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 · 77 lines

How it starts

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

ProxyPal

Tauri v2 desktop app — proxy API management with SolidJS frontend and Rust backend.

Stack

  • Frontend: SolidJS 1.9 + TypeScript 5.6 + Tailwind CSS 3 + Kobalte UI
  • Backend: Rust (Tauri v2, 10 plugins: dialog, fs, updater, deep-link, etc.)
  • Build: Vite 6 + Tauri CLI | Test: Vitest 4 | PM: pnpm
  • Charts: ECharts 6 + Chart.js 4 | i18n: @solid-primitives/i18n

Structure

src/                        # SolidJS frontend
  components/               # UI components (22+), charts/, ui/
  pages/                    # Dashboard, Analytics, ApiKeys, Settings, etc.
  stores/                   # Reactive stores (app, requests, theme, toast)
  i18n/                     # Internationalization (locale, catalog)
  lib/                      # Utilities (tauri bindings, quotaCache)
src-tauri/src/              # Rust backend
  commands/                 # Tauri commands (proxy, cloudflare, ssh, config)
  types/                    # Shared type definitions (16 modules)
  lib.rs                    # Main library entry
  config.rs, state.rs       # App config and state management

Commands

pnpm tauri dev              # Dev (frontend + backend)
pnpm tsc --noEmit           # Type check (frontend)
pnpm check:ts               # Fast type check (uses tsgo when available, falls back to tsc)
pnpm check:parallel         # Parallel: type check + lint + format
cd src-tauri && cargo check # Type check (backend)
pnpm test                   # Vitest (10 tests, 3 files)
pnpm build                  # Vite build (frontend only)

Code Style

// SolidJS: interface above component, splitProps, `class` not `className`
interface ProviderCardProps {
  name: string;
  provider: Provider;
  connected: number;
  onConnect: (provider: Provider) => Promise<void>;
}
export function ProviderCard(props: ProviderCardProps) {
  const [loading, setLoading] = createSignal(false);
  // ...
}
// Rust: Result<T, String>, State<AppState>, #[serde(rename_all = "camelCase")]
#[tauri::command]
pub fn save_config(state: State<AppState>, config: AppConfig) -> Result<(), String> {
    let mut current_config = state.config.lock().unwrap();
    *current_config = config;
    Ok(())
}

Read the full file on GitHub · 77 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. yesterday First seen · 77 lines · 716 tokens per session scan A 53890878f2a0

Subscribe to this mod's changes

proxypal AGENTS.md is an instructions file published in the GitHub repository heyhuynhgiabuu/proxypal (1,195 stars, last pushed 10d ago), licensed MIT. It adds 716 tokens to every session, about $0.0036 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.