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.
npx agentmods add instructions/kubev2v/forklift-console-plugin/agents-mdgit clone --depth 1 https://github.com/kubev2v/forklift-console-pluginWrote 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.
[](https://agentmods.dev/instructions/kubev2v/forklift-console-plugin/agents-md)<a href="https://agentmods.dev/instructions/kubev2v/forklift-console-plugin/agents-md"><img src="https://agentmods.dev/badge/instructions/kubev2v/forklift-console-plugin/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.05516 | $0.05516 |
| Opus 5 | $0.02758 | $0.02758 |
| Sonnet 5 | $0.01103 | $0.01103 |
| Haiku 4.5 | $0.00552 | $0.00552 |
Grade A, and why
forklift-console-plugin AGENTS.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.
How it starts
The opening of the file, as written. The whole thing — 710 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI Assistant Guidelines for Forklift Console Plugin
Project overview, tech stack, and domain knowledge: See
.cursor/rules/project-context.mdcfor Forklift-specific context (CRDs, providers, migration flow, architecture). This file focuses on coding standards and conventions.
Code Style & Conventions
TypeScript
-
Use
typeinstead ofinterfacefor type definitions:// ✅ Good type UserProps = { name: string; age: number; }; // ❌ Bad interface UserProps { name: string; age: number; } -
Type imports:
- If all imports from a module are types, use
import type:// ✅ Good - all imports are types import type { FC, ReactNode } from 'react'; import type { UserProps } from './types'; - If some imports are types and some are values, use inline
typekeyword:// ✅ Good - mixed types and values import { type FC, useState, type ReactNode } from 'react'; - Never separate type and value imports from the same module:
// ❌ Bad - separate imports from same module import type { FC } from 'react'; import { useState } from 'react';
- If all imports from a module are types, use
-
Strict null checks are enabled - always handle nullable values properly.
React
-
Never use default or star imports for React:
// ✅ Good import { useState, useEffect, type FC } from 'react'; // ❌ Bad import React from 'react'; import * as React from 'react'; -
Use functional components with
FCtype:const MyComponent: FC<MyComponentProps> = ({ prop1, prop2 }) => { return <div>{prop1}</div>; }; -
Export components as default at the end of the file (for component files).
PatternFly Components
- Use
ButtonVariantenum instead of string literals:// ✅ Good <Button variant={ButtonVariant.primary}>Click</Button> // ❌ Bad <Button variant="primary">Click</Button>
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.
- 3d ago First seen · 710 lines · 5,516 tokens per session scan A b7a5ae3e7cb6
forklift-console-plugin AGENTS.md is an instructions file published in the GitHub repository kubev2v/forklift-console-plugin (11 stars, last pushed 4d ago), licensed Apache-2.0. It adds 5,516 tokens to every session, about $0.0276 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.
Other instructions, from other repositories
react-seed AGENTS.md
Instructions for guokaigdg/react-seed, covering agents.md, 目录, 1. 项目概览, 2. 技术栈 and 3. 目录结构.
Kokoro-Engine CLAUDE.md
Instructions for chyinan/Kokoro-Engine, covering claude.md, git 规范, 项目概述, 常用命令 and 安装依赖.
weaverse copilot-instructions.md
Instructions for Weaverse/weaverse, covering copilot instructions, coding standards, typescript guidelines, react guidelines and error handling.
patternfly-react-seed AGENTS.md
Instructions for patternfly/patternfly-react-seed, covering agent instructions (patternfly react seed), what this project is, stack, commands to run before you consider work done and repository layout.
lovable-boilerplate development.instructions.md
Instructions for chihebnabil/lovable-boilerplate, covering development workflow & commands, essential commands, critical workflow rules, before shipping and never ship.
react-fetch-streams AGENTS.md
Instructions for rolandjitsu/react-fetch-streams, covering agents.md, workflow, writing: code, comments, docs, commits, commits and tests.