DPlex copilot-instructions.md

A project guide for DPlex, an Electron and React desktop app that manages terminal sessions for AI command-line tools such as Copilot CLI and Claude Code. It explains how the app is built, run, tested, and divided into processes.

In plain words
What is it for?
Use it to run development, build, lint, type-check, and test commands, and to understand where file, process, and AI-provider code belongs.
Why use it?
It gives coding agents the project’s architecture and working rules before they change code. This helps avoid breaking the boundaries between the app’s system, bridge, and user-interface processes.

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/ron537/dplex/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/Ron537/DPlex

Made for: GitHub Copilot.

Per session 2,614 This file is loaded in full into every session.
When invoked 2,614 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.02614 $0.02614
Opus 5 $0.01307 $0.01307
Sonnet 5 $0.00523 $0.00523
Haiku 4.5 $0.00261 $0.00261

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

Security

Grade A, and why

DPlex 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 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.

.github/copilot-instructions.md · 165 lines

How it starts

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

DPlex — Copilot Instructions

Build & Run

npm run dev          # Start Electron app in dev mode (hot reload)
npm run build        # Typecheck + build (runs typecheck:node && typecheck:web first)
npm run lint         # ESLint across entire project
npm run typecheck    # TypeScript check only (no build)
npm run test:unit    # Run unit tests (Vitest)
npm run test:e2e     # Run Electron end-to-end tests (Playwright)
npm run test:monkey  # Run randomized monkey tests (Playwright)
npm run test:all     # Run all tests

Architecture

DPlex is an Electron + React terminal multiplexer that manages AI CLI tool sessions (Copilot CLI, Claude Code, etc.). It uses electron-vite with three process targets:

Process Boundaries

  • Main process (src/main/) — Node.js. PTY management via node-pty, session discovery from filesystem, settings persistence. All file system and process operations live here.
  • Preload (src/preload/index.ts) — IPC bridge. Defines DplexAPI interface exposed as window.dplex. This is the sole contract between main and renderer — every new IPC channel must be added to both the type definition and the implementation in this file.
  • Renderer (src/renderer/) — React + Tailwind CSS v4. No direct Node.js or filesystem access; everything goes through window.dplex.* IPC calls.

Provider System (AI Tool Abstraction)

AI tools are abstracted behind SessionProvider interface (src/main/services/providers/types.ts). To add a new AI CLI tool:

  1. Create a class implementing SessionProvider in src/main/services/providers/
  2. Register it in createDefaultRegistry() in providers/index.ts

No other files need changes. The provider handles: session discovery, active session detection, close/delete, resume command generation, and session resolution by PID/CWD.

ProviderRegistry aggregates operations across all providers. IPC handlers in main/index.ts delegate to the registry.

State Management

Zustand stores (no Redux). Four stores, each owning a specific domain:

Read the full file on GitHub · 165 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 · 165 lines · 2,614 tokens per session scan A 2c5608f76db9

Subscribe to this mod's changes

DPlex copilot-instructions.md is an instructions file published in the GitHub repository Ron537/DPlex (18 stars, last pushed 8d ago), licensed MIT. It adds 2,614 tokens to every session, about $0.0131 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.

Related

Other instructions, from other repositories

skill-recorder copilot-instructions.md

Instructions for microsoft/skill-recorder, covering repository instructions for coding agents and pull requests target the active release branch, not main.

microsoft/skill-recorder · 280 tokens

gortex CLAUDE.md

Instructions for zzet/gortex, covering gortex, build & test, codebase overview, discovery (read once, then keep using) and llm provider (powers ask and searchsymbols assist: modes).

zzet/gortex · 5,172 tokens

calva-backseat-driver AGENTS.md

Instructions for BetterThanTomorrow/calva-backseat-driver, covering calva backseat driver - ai agent guide, essential architecture, action/effect system ("ex"), runtime state structure and datascript connections.

BetterThanTomorrow/calva-backseat-driver · 3,441 tokens

calva-backseat-driver backseat-driver-source-conventions.instructions.md

Backseat Driver extension source code conventions — Ex framework patterns, async, state management, namespace separation, and naming. Supplements universal Clojure patterns with Backseat Driver-specific rules.

BetterThanTomorrow/calva-backseat-driver · 1,225 tokens

copilotd copilot-instructions.md

Instructions for DamianEdwards/copilotd, covering copilot instructions for copilotd, build & run, build, run from source (auto-builds and passes all args through) and architecture.

DamianEdwards/copilotd · 1,292 tokens

calva-backseat-driver copilot-instructions.md

Instructions for BetterThanTomorrow/calva-backseat-driver, covering what backseat driver is, repl environment, state inspection safety, bundled ai context (chatskills / chatinstructions) and key development commands.

BetterThanTomorrow/calva-backseat-driver · 492 tokens