JSPM

  • Created
  • Published
  • Downloads 937
  • Score
    100M100P100Q110390F
  • License ISC

A comprehensive library of specialized AI personas and chat modes for GitHub Copilot, ranging from architectural planning and specific tech stacks to advanced cognitive reasoning models.

Package Exports

    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 (workspace-architect) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Workspace Architect

    A comprehensive library of specialized AI personas and chat modes for GitHub Copilot, accessible via CLI.

    Usage

    You can use this tool directly with npx without installing it:

    npx workspace-architect download instructions:basic-setup

    Commands

    List Available Assets

    npx workspace-architect list
    # or list specific type
    npx workspace-architect list instructions

    Download an Asset

    npx workspace-architect download <type>:<name>

    Example:

    npx workspace-architect download prompts:code-review

    Options:

    • -d, --dry-run: Simulate the download without writing files.
    • -f, --force: Overwrite existing files without asking.
    • -o, --output <path>: Specify the output path (default: .github/<type>).

    Development

    Local Testing

    1. Install dependencies:

      npm install
    2. Run the CLI locally:

      node bin/cli.js list
    3. Link the package to test npx behavior locally (simulated):

      npm link
      npx workspace-architect list

    Adding New Assets

    1. Create a new markdown file in assets/instructions, assets/prompts, or assets/chatmodes.
    2. The file name will be the ID used for downloading (e.g., assets/instructions/my-guide.md -> instructions:my-guide).