hana-developer-cli-tool-example cli-command-development.instructions.md

A set of rules for creating or changing command files in the `bin/` folder of a command-line application. It covers command structure, type checking, translations, errors, database connections, and documentation links.

In plain words
What is it for?
Use it when adding or updating commands that users run with `hana-cli <commandName>`, including their options, aliases, prompts, database access, and documentation.
Why use it?
It keeps commands consistent and helps prevent missing cleanup, untranslated messages, incorrect database use, or broken integration with the yargs command framework.

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/sap-samples/hana-developer-cli-tool-example/cli-command-development
Clone the repo
git clone --depth 1 https://github.com/SAP-samples/hana-developer-cli-tool-example

Made for: GitHub Copilot.

Per session 7,202 This file is loaded in full into every session.
When invoked 7,202 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.07202 $0.07202
Opus 5 $0.03601 $0.03601
Sonnet 5 $0.01440 $0.01440
Haiku 4.5 $0.00720 $0.00720

Measured yesterday against content hash 2c455d346a4c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.github/instructions/cli-command-development.instructions.md · 1,111 lines

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

  1. Consistency: All commands follow the same structural pattern.
  2. Type Safety: Use JSDoc and @ts-check for type checking.
  3. Internationalization: All user-facing strings must come from i18n bundles.
  4. Error Handling: Comprehensive try/catch with proper cleanup.
  5. Database Connections: Use the centralized connection infrastructure.
  6. 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)
  }
}

Read the full file on GitHub · 1,111 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. yesterday First seen · 1,111 lines · 7,202 tokens per session scan A 2c455d346a4c

Subscribe to this mod's changes

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.

Related

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.

loulanyue/spec-kit-zh · 3,968 tokens

GameDesignOS AGENTS.md

Instructions for DY-2026/GameDesignOS, covering gamedesignos agent 入口, 默认接法, agent 执行规则, 什么时候用整个项目 and 每个 skill 单独怎么用.

DY-2026/GameDesignOS · 972 tokens

coder CLAUDE.md

Claude Code instructions for coder/coder, a project described as: Secure environments for developers and their agents.

coder/coder · 3 tokens

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.

ClaudeCodeUsage/ClaudeCodeUsage · 2,612 tokens

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.

ahpxex/open-dictionary · 1,906 tokens

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…

gitkraken/vscode-gitlens · 5 tokens