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/sap-samples/hana-developer-cli-tool-example/cli-command-developmentgit clone --depth 1 https://github.com/SAP-samples/hana-developer-cli-tool-exampleWhat 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.07202 | $0.07202 |
| Opus 5 | $0.03601 | $0.03601 |
| Sonnet 5 | $0.01440 | $0.01440 |
| Haiku 4.5 | $0.00720 | $0.00720 |
Grade A, and why
hana-developer-cli-tool-example cli-command-development.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.
How it starts
The opening of the file, as written. The whole thing — 1,111 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLI Command Development Guidelines
Use this guide when creating or modifying CLI command files in the bin/ directory.
Scope and Purpose
This guide applies to all command files in bin/. Each file represents a single CLI command that users can execute via hana-cli <commandName>.
Critical Principles
- Consistency: All commands follow the same structural pattern.
- Type Safety: Use JSDoc and
@ts-checkfor type checking. - Internationalization: All user-facing strings must come from i18n bundles.
- Error Handling: Comprehensive try/catch with proper cleanup.
- Database Connections: Use the centralized connection infrastructure.
- Documentation Integration: Every command links to its documentation.
File Structure Template
Every CLI command file must follow this structure:
// @ts-check
import * as baseLite from '../utils/base-lite.js'
import { buildDocEpilogue } from '../utils/doc-linker.js'
export const command = 'commandName [param1] [param2]'
export const aliases = ['alias1', 'alias2']
export const describe = baseLite.bundle.getText("commandName")
export const builder = (yargs) => yargs.options(baseLite.getBuilder({
// Command-specific options here
})).wrap(160).example(
'hana-cli commandName --option value',
baseLite.bundle.getText("commandNameExample")
).epilog(buildDocEpilogue('commandName', 'category', ['relatedCmd1', 'relatedCmd2']))
export let inputPrompts = {
// Prompt schema here
}
export async function handler(argv) {
const base = await import('../utils/base.js')
base.promptHandler(argv, mainFunction, inputPrompts)
}
export async function mainFunction(prompts) {
const base = await import('../utils/base.js')
base.debug('mainFunction')
try {
base.setPrompts(prompts)
const db = await base.createDBConnection()
// Business logic here
base.outputTableFancy(results)
base.end()
return results
} catch (error) {
await base.error(error)
}
}
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.
- yesterday First seen · 1,111 lines · 7,202 tokens per session scan A 2c455d346a4c
hana-developer-cli-tool-example cli-command-development.instructions.md is an instructions file published in the GitHub repository SAP-samples/hana-developer-cli-tool-example (109 stars, last pushed 6d ago), licensed Apache-2.0. It adds 7,202 tokens to every session, about $0.0360 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
spec-kit-zh AGENTS.md
Instructions for loulanyue/spec-kit-zh, covering agents.md, about spec kit and specify, general practices, adding new agent support and current supported agents.
GameDesignOS AGENTS.md
Instructions for DY-2026/GameDesignOS, covering gamedesignos agent 入口, 默认接法, agent 执行规则, 什么时候用整个项目 and 每个 skill 单独怎么用.
coder CLAUDE.md
Claude Code instructions for coder/coder, a project described as: Secure environments for developers and their agents.
ClaudeCodeUsage AGENTS.md
Instructions for ClaudeCodeUsage/ClaudeCodeUsage, covering agents.md, product identity and scope, architecture boundaries, safety and privacy invariants and codex beta data and performance invariants.
open-dictionary AGENTS.md
Instructions for ahpxex/open-dictionary, covering open dictionary rewrite charter, product framing, core workflow, technical framework and 1. raw ingestion layer.
vscode-gitlens CLAUDE.md
Claude Code instructions for gitkraken/vscode-gitlens, a project described as: Supercharge Git inside VS Code and unlock untapped knowledge within each repository — Visualize code authorship at a glance via Git blame annotations and CodeLens, seamlessly navigate and explore Git repositories, gain valuable insights via…