Package Exports
- @promptg/cli
- @promptg/cli/dist/cli.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@promptg/cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
PromptG CLI
Prompts as code. Versioned, shareable, standard.
PromptG CLI is LLM and tool agnostic. It manages prompts and prompt templates locally (“prompt-as-code”) and outputs plain text so you can pipe it into any runner or copy it anywhere.

Prompts and Prompt Templates are standardised JSON files that live in your user .promptg folder, or projects (or anywhere really). They can be created, imported and exported, or compiled into packs and shared.
Installation
npm install -g @promptg/cli
promptg --helpQuickstart
# Create a project store in the current repo (./promptg)
promptg init
# Save a prompt from stdin (the prompt content can use {{variables}})
echo "Hello, this is my sample prompt" | promptg prompt save hello
#or create in your editor
promptg prompt new hello
# Render your prompt
promptg get hello
# Pipe it into your runner:
# promptg get hello | <your-llm-runner>Variable substitution
# Save a prompt from stdin (the prompt content can use {{variables}})
echo "Review this code, focus on {{focus}}." | promptg prompt save review
# Render it with variables
promptg get review --var focus=SecurityQuick install packs
promptg pack install https://promptg.io/dl/packs/promptg-pack-dev-essentials.jsonSee the PromptG Starter Packs repository for more
Common commands
See the full CLI reference: docs/CLI.md, or some quick commands below
# Discover + debug
promptg --help
promptg status
promptg store path --store project
promptg doctor
promptg version
# List and inspect what you have
promptg prompt list --long
promptg template list --long
promptg prompt show code-review
promptg template show pr-review --embedded
# Edit metadata (description/tags) and rename
promptg prompt meta code-review --description "Review a diff for security issues" --tag security --tag review
promptg prompt rename code-review security-review
# Render prompt different ways
promptg get pr-review --unfilled
promptg get pr-review --info
promptg get pr-review --format json
# Import JSON (backup/share)
promptg import ./promptg-prompt-hello.json
# Packs: build + install
promptg pack build my-team-pack --pack-version 1.0.0 --store project
promptg pack install ./.promptg/packs/promptg-pack-my-team-pack.json --only-new
# CI checks
promptg validatePrompts, Templates, Packs - The PromptG ecosystem
PromptG defines three fundamental document kinds. Complete info.
Prompt
A Prompt is the atomic, executable unit in PromptG. It represents a single, self-contained, ready-to-use instruction for an AI model, containing the prompt text, optional variables, and metadata.
{
"schemaVersion": "1",
"kind": "prompt",
"name": "welcome",
"content": "Write a short welcome message for {{name}}."
}Template
A Template is a catalog or distribution envelope for a single, complete embedded Prompt document. It contains a full Prompt document under its prompt field. The Template itself has its own metadata for discovery and organization, which is entirely separate from the embedded Prompt.
{
"schemaVersion": "1",
"kind": "template",
"name": "welcome",
"displayName": "Welcome message",
"description": "Greets a person by name",
"prompt": {
"schemaVersion": "1",
"kind": "prompt",
"name": "welcome",
"content": "Write a short welcome message for {{name}}."
}
}Pack
A Pack is a versioned collection that bundles multiple Prompt and/or Template documents.
{
"kind": "pack",
"name": "my project onboarding",
"version": "1.1.4",
"prompts": [{ "name": "welcome", "content": "..." }],
"templates": [{...},{...}],
"prompts": [{...},{...},{...}]
}.promptg/ Folder Layout
When you run promptg init, it creates a project store at .promptg/ with this structure:
.promptg/
|---- prompts/ # Prompt documents (instances)
| `---- promptg-prompt-<name>.json
|---- templates/ # Template documents (blueprints)
| `---- promptg-template-<name>.json
`---- packs/ # Pack documents (distribution bundles)
`---- promptg-pack-<name>.jsonDocumentation
- Full CLI reference: docs/CLI.md
- Schemas (vendored for offline use + editor tooling): schemas/README.md
- Spec: https://github.com/promptg/spec
Contributing
See CONTRIBUTING.md
Security
See SECURITY.md.
License
Apache-2.0. See LICENSE.