Package Exports
- @adam-leigh/hyper
- @adam-leigh/hyper/dist/index.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 (@adam-leigh/hyper) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Hyper CLI
A command-line tool for project management and development.
Installation
# Install from source
git clone <repository-url>
cd hyper-cli
pnpm install
pnpm run build
pnpm link --global
# Now you can run the CLI globally
hyper --helpCommands
hyper init
Initializes the project structure by:
- Validating that the current directory contains both
src/andpublic/folders - Creating empty
ai_docs/andspecs/directories if they don't exist
hyper inithyper chat
Starts an interactive chat interface (coming soon).
hyper chathyper webhook test
Tests a webhook endpoint and displays the response.
hyper webhook testDevelopment
# Install dependencies
pnpm install
# Build the project
pnpm run build
# Run the CLI
node dist/index.jsProject Structure
.
├── package.json
└── src
├── cli/ # Core CLI functionality
├── commands/ # Individual commands
└── shared/ # Shared utilities