scribe-ai copilot-instructions.md

scribe-ai copilot-instructions.md is an instructions file for GitHub Copilot from badrshs/scribe-ai. It costs 1,680 tokens per session, scanned A, original, MIT.

Project-specific instructions for coding agents working on the Scribe AI Laravel package, a reusable PHP component for Laravel applications.

In plain words
What is it for?
Guide work on Scribe AI’s content pipeline, including scraping, rewriting, image handling, article creation, publishing, and running the required done command until approved.
Why use it?
They give an agent the package’s supported versions, architecture, testing routine, and required approval loop so changes follow the project’s rules.

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/badrshs/scribe-ai/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/badrshs/scribe-ai

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/badrshs/scribe-ai/copilot-instructions.svg)](https://agentmods.dev/instructions/badrshs/scribe-ai/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/badrshs/scribe-ai/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/badrshs/scribe-ai/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,680 This file is loaded in full into every session.
When invoked 1,680 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.01680 $0.01680
Opus 5 $0.00840 $0.00840
Sonnet 5 $0.00336 $0.00336
Haiku 4.5 $0.00168 $0.00168

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

Security

Grade A, and why

scribe-ai 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 4d 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 · 135 lines

How it starts

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

Scribe AI - Copilot Instructions

Package identity

  • Composer name: badrshs/scribe-ai | PHP namespace: Badr\ScribeAi
  • Laravel package (no standalone entrypoint). All classes are registered as singletons in ScribeAiServiceProvider.
  • Targets Laravel 11/12 and PHP 8.2+.

Testing Workflow - The "done" Command Loop Veru crocial

Before completing ANY task, you MUST:

  1. Run php artisan done command and wait for approval
  2. user will test, check your code and potentially modify the command with the next instructions
  3. If user modifies the command, address their feedback
  4. Then Run php .\artisan done again
  5. Repeat until the command runs successfully without user modifications

Core architecture

1. Content Pipeline

ContentPipeline sends an immutable ContentPayload DTO through an ordered list of stages using Laravel's Illuminate\Pipeline\Pipeline. Default stage order (configured in config/scribe-ai.phppipeline.stages):

ScrapeStage → AiRewriteStage → GenerateImageStage → OptimizeImageStage → CreateArticleStage → PublishStage

Writing a stage - implement Contracts\Pipe:

public function handle(ContentPayload $payload, Closure $next): mixed
{
    // Transform and continue:
    return $next($payload->with(['title' => $newTitle]));
    // Or reject (halt pipeline without calling $next):
    return $payload->with(['rejected' => true, 'rejectionReason' => 'duplicate']);
}

Mutating the payload - ContentPayload has readonly properties. Always use $payload->with([...]) to produce a new instance; never try to assign properties directly.

One-off custom stage order:

app(ContentPipeline::class)->through([ScrapeStage::class, MyStage::class])->process($payload);

customStages is consumed and cleared after a single process() call.

2. Publisher Manager

PublisherManager is a Strategy + Manager pattern. Built-in drivers: log, facebook, telegram, blogger, wordpress.

Adding a custom driver (in a service provider):

app(PublisherManager::class)->extend('medium', fn(array $config) => new MediumDriver($config));

Read the full file on GitHub · 135 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. 4d ago First seen · 135 lines · 1,680 tokens per session scan A 504ad42ce82c

Subscribe to this mod's changes

scribe-ai copilot-instructions.md is an instructions file published in the GitHub repository badrshs/scribe-ai (11 stars, last pushed 3mo ago), licensed MIT. It adds 1,680 tokens to every session, about $0.0084 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.