opcua-client copilot-instructions.md

opcua-client copilot-instructions.md is an instructions file for GitHub Copilot from php-opcua/opcua-client. It costs 710 tokens per session, scanned A, original, MIT.

Project instructions for a PHP client library that communicates with industrial devices and systems using OPC UA, a standard for exchanging data securely. They describe the library’s architecture, required reference files, and coding rules.

In plain words
What is it for?
They guide work on connecting to OPC UA servers, reading and writing data, browsing devices, subscribing to updates, handling security, testing, and integrating the client with PHP frameworks.
Why use it?
They give an agent the project context needed to change a complex protocol library without overlooking its design or required documentation.

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/php-opcua/opcua-client/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/php-opcua/opcua-client

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 opcua-client copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/php-opcua/opcua-client/copilot-instructions.svg)](https://agentmods.dev/instructions/php-opcua/opcua-client/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/php-opcua/opcua-client/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/php-opcua/opcua-client/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 710 This file is loaded in full into every session.
When invoked 710 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.00710 $0.00710
Opus 5 $0.00355 $0.00355
Sonnet 5 $0.00142 $0.00142
Haiku 4.5 $0.00071 $0.00071

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

Security

Grade A, and why

opcua-client 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 3d 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 · 59 lines

How it starts

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

OPC UA PHP Client — Copilot Instructions

This repository contains php-opcua/opcua-client, a pure PHP OPC UA client that communicates directly over TCP using the OPC UA binary protocol.

Project context

For a full understanding of this library, read these files in order:

  1. llms.txt — compact project summary: architecture, classes, API, configuration
  2. llms-full.txt — comprehensive technical reference: every class, method, DTO, encoding, security, protocol services
  3. llms-skills.md — task-oriented recipes: connect, read, write, browse, subscribe, security, testing, Laravel integration

Architecture

ClientBuilder (configuration)
    │
    ▼ connect()
Client (OpcUaClientInterface)
    ├── Transport (TCP socket)
    ├── Protocol (OPC UA service encoding/decoding)
    ├── Encoding (binary serialization)
    ├── Security (secure channel, crypto)
    ├── Types (NodeId, DataValue, Variant, DTOs)
    ├── Repository (ExtensionObject codecs)
    ├── Cache (PSR-16: InMemoryCache, FileCache)
    ├── Event (47 PSR-14 events)
    ├── TrustStore (server certificate trust)
    └── Testing (MockClient)

Key classes

  • src/ClientBuilder.php — builder / entry point, ClientBuilder::create()->connect()
  • src/Client.php — connected client, implements OpcUaClientInterface
  • src/ClientBuilder/ — 8 builder traits (cache, events, timeout, trust store, batching, etc.)
  • src/Client/ — 14 runtime traits (browse, read/write, subscriptions, history, etc.)
  • src/Types/ — all OPC UA data types, enums, and result DTOs (public readonly properties)
  • src/Security/ — secure channel, crypto, 6 security policies
  • src/Testing/MockClient.php — in-memory test double, no TCP connection
  • src/Repository/ExtensionObjectRepository.php — per-client codec registry

Code conventions

  • declare(strict_types=1) in every file
  • Public readonly properties on all DTOs (not getters): $ref->nodeId, $dv->statusCode
  • All methods accepting NodeId also accept string format: 'i=2259', 'ns=2;s=MyNode'
  • Configuration on ClientBuilder before connect()Client is immutable after connection
  • PHPDoc on every class and public method (@param, @return, @throws, @see)
  • No comments inside function bodies — if code needs a comment, it should be split into well-named methods
  • Tests use Pest PHP (not PHPUnit)
  • Integration tests grouped with ->group('integration')
  • Coverage target: 99%+

Read the full file on GitHub · 59 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. 3d ago First seen · 59 lines · 710 tokens per session scan A 9b25b2cbda27

Subscribe to this mod's changes

opcua-client copilot-instructions.md is an instructions file published in the GitHub repository php-opcua/opcua-client (13 stars, last pushed 22d ago), licensed MIT. It adds 710 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.