Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,16 @@ Prompd is a CLI tool and file format for managing structured AI prompts. Write o
# Option 1: Python CLI (Full Featured - Recommended)
pip install prompd

# Option 2: Go CLI (Zero Dependencies, Single Binary)
# Download from releases or build:
cd go && go build -o prompd ./cmd/prompd

# Option 3: Node.js/TypeScript CLI (Developer Focused)
cd typescript && npm install && npm run build
# Option 2: Node.js/TypeScript CLI (Developer Focused)
npm install -g @prompd/cli
```

**Choose based on your deployment needs:**
- **Python CLI**: Full-featured with compilation pipeline, AI shell, MCP server, and all advanced features
- **Go CLI**: Lightweight, zero-dependency binary for containers, CI/CD, minimal environments
- **Node.js CLI**: Developer-focused with TypeScript and MCP integration
- **Go CLI**: *In progress* — lightweight, zero-dependency binary for containers and CI/CD

> **Note**: The Python CLI is the most feature-complete implementation. Go and Node.js CLIs are being updated to achieve feature parity.
> **Note**: The Python CLI is the most feature-complete implementation. The Go CLI is under active development and not yet available for general use.

### Install Python CLI from PyPI

Expand Down Expand Up @@ -426,4 +422,4 @@ Elastic License 2.0 (ELv2) - see [LICENSE](LICENSE) file.

- [Prompd Desktop App](https://github.com/Prompd/prompd-app) — Visual IDE for building and deploying AI workflows
- [Community Prompts](https://github.com/Prompd/prompds) — Open-source prompt packages and templates
- [PrompdHub](https://www.prompdhub.ai/registry) — Browse and install community packages
- [PrompdHub](https://prompdhub.ai) — Browse and install community packages
2 changes: 1 addition & 1 deletion python/tests/shell/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This directory contains comprehensive tests for the enhanced Prompd Shell with c
### Individual Test Files
```bash
# Run from the python CLI directory
cd /c/git/github/Logikbug/prompd-cli/python
cd /c/git/github/Prompd/prompd-cli/python
python tests/shell/test_compact_mode.py
```

Expand Down
Loading