# agent-plugins **Repository Path**: worldzb/agent-plugins ## Basic Information - **Project Name**: agent-plugins - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-09-17 - **Last Updated**: 2026-09-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # tps-plugins Monorepo for **TPS (tokens per second)** meter plugins that show AI coding‑agent output speed in the terminal. | Package | Agent | What it does | | :------ | :---- | :----------- | | [`packages/claude-tps`](./packages/claude-tps) | Claude Code | Global status‑line segment showing output TPS, derived from the session transcript. | | [`packages/opencode-tps`](./packages/opencode-tps) | OpenCode | TUI plugin showing live output TPS in the session prompt row. | Both measure the same thing — how fast the model is writing tokens — but target different agents and therefore use different data sources. See each package's README for design notes. ## Layout ``` tps-plugins/ ├── package.json # workspace root (private) ├── packages/ │ ├── claude-tps/ # Claude Code status-line plugin │ └── opencode-tps/ # OpenCode TUI plugin └── README.md ``` ## Requirements - [Bun](https://bun.sh) 1.3+ (used for the workspace, build, and tests) - Node 20+ is fine for running the built output - `packages/claude-tps` additionally needs Python 3.9+ ## Getting started ```bash bun install ``` ## Common commands ```bash bun run build # build every package that has a build script bun run test # run every package's tests bun run typecheck # typecheck every package ``` Target a single package with Bun's `--filter`: ```bash bun run --filter opencode-tps test bun run --filter opencode-tps build ``` ## Installation Each package installs into its own agent: - **opencode-tps** → reference it from `~/.config/opencode/tui.json`. See [`packages/opencode-tps/README.md`](./packages/opencode-tps/README.md). - **claude-tps** → add the package directory as a local marketplace, or copy it into `~/.claude/skills/`. See [`packages/claude-tps/README.md`](./packages/claude-tps/README.md). ## License MIT