tellnova

100 Claude prompt commands you can add to tellnova

Prompt cards such as debug, audit, teachme, and shipit flowing into a tellnova coding agent workspace

These are useful conventions, not secret Claude features

A community collection called Claude Secret Codes groups 100 short instructions under memorable names such as /debug, OODA, /teachme, and /shipit. The names are genuinely useful. The word secret is marketing, though: most of these are prompt conventions, not undocumented switches hidden inside Claude.

That distinction matters because it reveals the more interesting idea. A short command becomes powerful when you define its behavior once, keep it under version control, and let everyone invoke the same instruction. Claude Code supports that model through Markdown skills and custom commands. Pi supports Markdown prompt templates. Because tellnova runs its agents on Pi, the same idea fits directly into tellnova.

You can therefore turn this list into a reusable command pack, install it from Git or npm, and see the commands in tellnova's task composer. You are not locked into somebody else's wording: every template can encode your team's own standards, tools, checks, and output format.

How commands work in Claude Code

In current Claude Code documentation, reusable skills live in a directory containing SKILL.md. A skill named debug can be invoked as /debug. Claude Code also continues to recognize the older .claude/commands/debug.md convention, although skills are the recommended format. Built-in commands are a separate set documented in the interactive mode reference.

A custom command is therefore not a new model capability. It is a stable entry point into a larger instruction. /debug payment timeout can expand into a procedure that reproduces the failure, traces the relevant path, identifies the root cause, adds a regression test, and reports what changed. The value comes from repeatability.

Why the same pattern works in tellnova

Pi calls these reusable instructions prompt templates. A Markdown file named debug.md becomes /debug. Pi loads templates from a user's prompt directory and from installable packages. Tellnova discovers that command catalog and surfaces it in the composer, so people do not need to remember filenames or paste long prompts.

This is a natural extension of tellnova's existing agent workflow:

If you already use your ChatGPT account for coding agents, see how to connect a ChatGPT subscription to tellnova. If a command needs web research, Agent Reach can give local tellnova agents internet access.

Package one command first

Start with a tiny package rather than copying 100 vague one-liners. A package can use this structure:

claude-command-pack/
├── package.json
└── prompts/
    ├── debug.md
    ├── audit.md
    └── shipit.md

The package manifest tells Pi where the templates live:

{
  "name": "claude-command-pack",
  "version": "1.0.0",
  "keywords": ["pi-package"],
  "pi": {
    "prompts": ["prompts"]
  }
}

Then prompts/debug.md defines real behavior instead of relying on the command name alone:

---
description: Reproduce a failure, find its root cause, and verify the fix
---

Debug the problem described by the user. Reproduce it before editing when possible.
Trace the relevant call path, state the root cause, make the smallest safe fix,
add or update a regression test, and run the most relevant verification.
Do not hide errors or weaken tests. Report the files changed and any remaining risk.

That prompt is intentionally specific. A useful command defines the process and the evidence expected at the end. It should not pretend that typing /godmode removes model limits or safety boundaries.

Install the pack in tellnova

Once the package is in a Git repository, installation is short:

  1. Open Settings in the tellnova desktop app.
  2. Open Extensions.
  3. Paste a direct source such as git:github.com/your-org/claude-command-pack into the extension field.
  4. Select Install.
  5. Start a new task, type /, and choose the installed command from the composer.

Tellnova also accepts npm package sources and local paths. A local path is useful while authoring; Git or npm is better when a team needs one reviewed version. Pi packages can execute code and receive broad machine access, so inspect third-party packages before installing them. The official Pi package documentation covers package sources, updates, and project-local installation.

You can download tellnova and keep the pack beside the repository that defines your team's engineering process.

The complete 100-command idea list

The following catalog preserves every name from the community gist while paraphrasing each intended use. Names without a slash work as memorable prompt headers in the original list; when packaging for Pi, normalize each filename to a lowercase command such as artifacts.md or dashboard.md.

Writing and style

Artifacts and creation

Thinking

Learning

Analysis and decisions

Creative and marketing

Coding

Research

Prompt and agent control

Specialized modes

Make commands operational, not theatrical

The best commands are not the names that sound most powerful. They are the ones that remove ambiguity from repeated work. /audit should name the standard, evidence, and output format. /shipit should define tests and release gates. /sources should say which sources qualify and how citations must be returned.

A good team pack should also stay small at first. Choose five commands you actually repeat, run them against real tasks, revise their Markdown in code review, and only then expand the catalog. Commands can compose with tellnova's local files, Git worktrees, cloud runs, scheduled automations, and model selection; the template remains a lightweight feature rather than a separate automation product.

The tellnova source repository shows how Pi command discovery is integrated into the desktop composer. The result is simple: write the operating procedure once, install it once, and invoke it wherever the work begins.

claudeprompt commandspitellnovaai agentsdeveloper tools

While you are here

Put the fleet to work.

tellnova runs background coding agents in isolated git worktrees — free for macOS, Windows, and Linux during the public alpha.

Download tellnova ↓