JSPM

@adam-leigh/hyper

1.0.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 7
    • Score
      100M100P100Q57623F
    • License ISC

    CLI tool for project management and development

    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 --help

    Commands

    hyper init

    Initializes the project structure by:

    • Validating that the current directory contains both src/ and public/ folders
    • Creating empty ai_docs/ and specs/ directories if they don't exist
    hyper init

    hyper chat

    Starts an interactive chat interface (coming soon).

    hyper chat

    hyper webhook test

    Tests a webhook endpoint and displays the response.

    hyper webhook test

    Development

    # Install dependencies
    pnpm install
    
    # Build the project
    pnpm run build
    
    # Run the CLI
    node dist/index.js

    Project Structure

    .
    ├── package.json
    └── src
        ├── cli/         # Core CLI functionality
        ├── commands/    # Individual commands
        └── shared/      # Shared utilities