solo copilot-instructions.md

solo copilot-instructions.md is an instructions file for GitHub Copilot from hiero-ledger/solo. It costs 1,491 tokens per session, scanned A, original, Apache-2.0.

Repository-specific GitHub Copilot instructions for the hiero-ledger/solo project. They summarize coding rules such as class-based organization, file naming, and TypeScript style.

In plain words
What is it for?
They are for guiding Copilot when writing or modifying Solo TypeScript code.
Why use it?
They keep generated code aligned with the project's conventions and reduce common review or linting violations.

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/hiero-ledger/solo/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/hiero-ledger/solo

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/hiero-ledger/solo/copilot-instructions.svg)](https://agentmods.dev/instructions/hiero-ledger/solo/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/hiero-ledger/solo/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/hiero-ledger/solo/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,491 This file is loaded in full into every session.
When invoked 1,491 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.01491 $0.01491
Opus 5 $0.00745 $0.00745
Sonnet 5 $0.00298 $0.00298
Haiku 4.5 $0.00149 $0.00149

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

Security

Grade A, and why

solo 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 · 106 lines

How it starts

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

GitHub Copilot instructions for hiero-ledger/solo

These instructions apply to all code suggestions in this repository. They mirror CLAUDE.md and the full TypeScript style guide at docs/contributing/typescript-code-style.md — read that guide for the authoritative rules and rationale. The conventions below are the ones violated most often.

Highest-frequency rules

  • No exported functions. Behavior (resolvers, orchestrators, computations) is grouped on a class as static methods. Do not write export function foo(...) or export const foo = () => … at module scope. Pure data — constants, types, simple factories — may still be exported. A helper used by only one class becomes a private static member of that class. (§3.4.5, §10.3.1–§10.3.2; enforced by the solo/no-exported-function ESLint rule — an error in src/integration/**.)

    // ❌ Avoid
    export function detectFatalContainerError(pod: V1Pod): string | undefined { ... }
    
    // ✅ Prefer
    export class K8ClientPods {
      public static detectFatalContainerError(pod: V1Pod): string | undefined { ... }
    }
    
  • One exported class/interface per file, with the file named in kebab-case matching the class/interface name (e.g. class KubeValidationkube-validation.ts, interface FooBarOptionsfoo-bar-options.ts). (§3.5; enforced by solo/exported-interface-in-own-file lint rule for interfaces — a warning today, escalating to error once legacy barrel files are split) Splitting types into separate files can create circular dependencies — verify with npx dpdm --no-warning --no-tree --exit-code circular:1 ./solo.ts after any such move. Break cycles by extracting a minimal shared interface rather than having two files import each other.

  • import type — use the inline form import {type Foo} from '...', never import type {Foo}.

  • Explicit types on every variable declaration and every callback (including it()/describe() callbacks in tests). (§6.1)

  • No banned abbreviations in identifiers or file names (fn, vars, opts, err, cb, …). Use full words (function → spell out the role, options, error, callback). (§5.1.2)

  • SPDX header required on every source file. TypeScript: // SPDX-License-Identifier: Apache-2.0 as the very first line (enforced by ESLint). Shell scripts under .github/workflows/script/: add # SPDX-License-Identifier: Apache-2.0 on the line immediately after #!/bin/bash — ESLint does not cover shell files, so apply it manually.

Read the full file on GitHub · 106 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 · 106 lines · 1,491 tokens per session scan A 3dd1ab1a71c0

Subscribe to this mod's changes

solo copilot-instructions.md is an instructions file published in the GitHub repository hiero-ledger/solo (43 stars, last pushed today), licensed Apache-2.0. It adds 1,491 tokens to every session, about $0.0075 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-09-01.

Related

Other instructions, from other repositories