Custom packs for Personal AI Infrastructure (PAI)
This repository contains custom PAI packs developed by Daniel Petro for the Personal AI Infrastructure ecosystem.
Purpose: End-to-end automation for consulting project delivery
Features:
- Discovery call processing with AI-powered requirements extraction
- Professional proposal generation
- Project status tracking and deliverable management
- PDF conversion with branded styling
- Automated documentation updates
Install: See packs/client-delivery/README.md
Purpose: Professional content management and publishing automation
Features:
- Blog post and article creation with templates
- AI-powered SEO review and optimization
- Content categorization and index management
- Multi-platform distribution (social snippets, formatting)
- Automated publishing workflows
Install: See packs/content/README.md
# Clone this repository
git clone https://github.com/danielpetro/ava-custom-packs.git
cd ava-custom-packs
# Install all packs to your PAI installation
./scripts/install.sh# Install ClientDelivery
cp -R packs/client-delivery ~/.claude/skills/ClientDelivery
# Install Content
cp -R packs/content ~/.claude/skills/Content# Install only ClientDelivery
cp -R packs/client-delivery ~/.claude/skills/ClientDelivery- Edit files in
~/.claude/skills/[Pack Name]/(your live PAI environment) - Test changes within PAI CLI
- Sync changes back to this repo:
cd ~/Documents/GitHub/ava-custom-packs ./scripts/sync.sh
- Review changes:
git diff - Commit:
git commit -m "Your change description" - Push:
git push
cd ~/Documents/GitHub/ava-custom-packs
git pull origin main
./scripts/install.sh # Re-install to ~/.claude/This repository contains NO secrets.
- All API keys live in
~/.claude/.env(never committed) - Personal data lives in
~/.claude/(never committed) - This repo contains only sanitized, shareable pack code
This repository follows PAI's Two-Repository Rule:
- PAI Repository (cookbook): Source code, packs, templates - read-only reference
- PAI Installation (kitchen): Your
~/.claude/- contains secrets, never public
Upstream PAI → This Repo → Your ~/.claude/
(danielmiessler/PAI) (ava-custom-packs) (private, no git)
↓ ↓ ↓
Base packs Custom packs Live installation
Read-only Version controlled Contains secrets
Found a bug or have a suggestion? Open an issue!
Want to use these packs? Fork and adapt for your needs!
- No Secrets: Never commit API keys, tokens, or personal data
- Sanitize: Use environment variables:
process.env.API_KEY - Document: Each pack should have clear README with examples
- Test: Verify pack works before committing
MIT License - feel free to use, modify, and distribute!
Built with Personal AI Infrastructure