Community Tools
🚧 Community-Driven - This ecosystem is in early stages
Overview
PromptPack is a specification for structuring prompts, tools, and workflows in YAML files. As an open specification, the community is encouraged to build tools, libraries, and integrations.
Current Reality: There are currently no official community tools. This page describes what could be built and how the community can contribute.
What Exists Today
Available Now
✅ PromptPack Specification - The file format is defined and documented
✅ JSON Schema - For validation of .promptpack.yml files
✅ PromptArena - CLI testing tool (see Arena Testing)
✅ Documentation - This site and the specification docs
Everything Else is Future Work
The following sections describe potential tools that could be built by the community. None of these currently exist.
Potential Development Tools
Editors and IDE Support
Opportunities:
- VS Code extension for syntax highlighting and validation
- IntelliJ/PyCharm plugin for YAML schema support
- Vim/Neovide plugins for PromptPack files
- Emacs modes with inline validation
How to Build:
- Use the JSON Schema from this repository
- Implement YAML language server features
- Add PromptPack-specific linting rules
- Publish to extension marketplaces
CLI Utilities
Potential Features:
- Validate PromptPack files against schema
- Lint for best practices and conventions
- Generate boilerplate templates
- Convert between formats
Example Implementation:
# What could exist (doesn't exist yet)
promptpack validate my-file.promptpack.yml
promptpack lint --fix my-file.promptpack.yml
promptpack init --template basic
Potential Runtime Implementations
Language Libraries
The specification could be implemented in any language:
JavaScript/TypeScript
- Parse
.promptpack.ymlfiles - Execute prompts with any LLM SDK
- Implement workflow logic
- Handle tool definitions
Python
- Integration with LangChain, LlamaIndex, etc.
- Jupyter notebook support
- FastAPI/Flask endpoints
- CLI utilities
Other Languages
- Go - High-performance runtime
- Rust - Memory-safe implementation
- Java/Kotlin - Enterprise integrations
Key Point: Each implementation would need to:
- Parse the PromptPack YAML format
- Provide its own LLM provider integrations
- Implement workflow execution logic
- Handle tool calling
Validation Tools
What You Can Do Today
Use existing JSON Schema validators:
# Install ajv-cli
npm install -g ajv-cli
# Validate a PromptPack file
ajv validate \
-s schema/promptpack.schema.json \
-d my-file.promptpack.yml
CI/CD Integration
Example GitHub Actions workflow:
name: Validate PromptPack Files
on: [push, pull_request]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Install validator
run: npm install -g ajv-cli
- name: Validate files
run: |
for file in **/*.promptpack.yml; do
ajv validate -s schema/promptpack.schema.json -d "$file"
done
How to Contribute
Building a Tool
If you want to build something for the PromptPack ecosystem:
- Understand the Spec - Read the specification thoroughly
- Use the Schema - Leverage the JSON Schema for validation
- Start Small - Build one focused tool rather than everything
- Document Well - Clear examples and usage instructions
- Share Early - Get feedback from the community
What's Needed
High-value contributions:
Validation & Linting
- Pre-commit hooks for PromptPack files
- CI/CD action for validation
- Best practices linter
Developer Experience
- VS Code extension (most requested)
- Schema generators from examples
- File format converters
Reference Implementations
- Python library for parsing PromptPack files
- JavaScript/TypeScript parser
- Example runtimes
Where to Discuss
- GitHub Discussions - General questions and ideas
- GitHub Issues - Bugs in the specification or schema
- Pull Requests - Contributions to docs or schema
Important Notes
Scope Boundaries
PromptPack is a file format specification, not a framework. It:
✅ Defines how to structure prompts in files ✅ Provides JSON Schema for validation ✅ Documents best practices
❌ Does NOT provide LLM provider integrations ❌ Does NOT include a runtime/execution engine ❌ Does NOT offer hosted services
Provider Integrations
Critical: Provider integrations (OpenAI, Anthropic, etc.) are outside the scope of PromptPack.
Each tool/library that uses PromptPack needs to:
- Choose which providers to support
- Implement its own API integrations
- Handle authentication and rate limiting
- Manage provider-specific features
PromptPack just defines the file format for prompts.
Getting Started
As a Tool Builder
- Clone the repository:
git clone https://github.com/AltairaLabs/promptpack-spec - Read the specification in
docs/ - Study the JSON Schema in
schema/ - Look at example files
- Start building!
As a User
- Write PromptPack files following the spec
- Validate them using JSON Schema tools
- Test with PromptArena (if applicable)
- Implement your own runtime or wait for community tools
Future Vision
Over time, the ecosystem could include:
- Tool Registry - Discover community tools
- Example Library - Reusable PromptPack files
- Best Practices - Guides and patterns
- Integration Directory - Tools that support PromptPack
These are aspirational goals, not commitments.
Questions?
- Specification Questions - Open a GitHub Discussion
- Tool Ideas - Start a Discussion to gauge interest
- Bug Reports - Open an Issue if you find spec problems
- Contributions - Submit a PR with improvements
Note: This page describes potential community tools and contribution opportunities. Most tools do not exist yet. If you're interested in building something, please join the discussion on GitHub!