packmind-cli-list-commands
Reference for Packmind CLI listing commands. This skill should be used when an agent needs to discover available standards, commands, or skills in the Packmind organization.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install packmindhub-packmind-packmind-cli-list-commands
Repository
Skill path: .cursor/skills/packmind-cli-list-commands
Reference for Packmind CLI listing commands. This skill should be used when an agent needs to discover available standards, commands, or skills in the Packmind organization.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: 'Complete terms in LICENSE.txt'.
Original source
Catalog source: SkillHub Club.
Repository owner: PackmindHub.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install packmind-cli-list-commands into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/PackmindHub/packmind before adding packmind-cli-list-commands to shared team environments
- Use packmind-cli-list-commands for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
--- name: 'packmind-cli-list-commands' description: 'Reference for Packmind CLI listing commands. This skill should be used when an agent needs to discover available standards, commands, or skills in the Packmind organization.' license: 'Complete terms in LICENSE.txt' --- # Packmind CLI List Commands List available Packmind artifacts (standards, commands, skills, packages) via the CLI. ## IMPORTANT: Output Requirements When presenting results to the user, you MUST: 1. **Run the CLI command** using the Bash tool 2. **Preserve the full URLs** from the CLI output - these are clickable links to the Packmind webapp 3. **Display results as a list** showing slug, name, and the full URL for each item 4. **Never summarize or table-ify** the output in a way that hides the URLs Example output format to show the user: ``` ## Standards (3) - **my-standard-slug** Name: My Standard Name Link: https://<host>/org/myorg/space/global/standards/abc123/summary - **another-standard** Name: Another Standard Link: https://<host>/org/myorg/space/global/standards/def456/summary ``` ## Commands Reference | Command | Purpose | |---------|---------| | `packmind-cli standards list` | List coding standards | | `packmind-cli commands list` | List reusable commands | | `packmind-cli skills list` | List available skills | | `packmind-cli install --list` | List available packages | ## Prerequisites Ensure packmind-cli is authenticated before running commands: ```bash packmind-cli whoami ``` If not logged in, authenticate first: ```bash packmind-cli login ``` --- ## Skill Companion Files > Additional files collected from the skill directory layout. ### README.md ```markdown # Packmind CLI List Commands A reference skill that helps AI coding agents discover available standards, commands, skills, and packages via the Packmind CLI. ## What This Skill Provides Quick reference for all CLI listing commands: - `packmind-cli standards list` - List coding standards - `packmind-cli commands list` - List reusable commands - `packmind-cli skills list` - List available skills - `packmind-cli install --list` - List available packages ## How to Use The AI agent will automatically use this skill when it needs to discover available artifacts in the Packmind organization. ## Prerequisites Before using these commands, ensure you have: - **packmind-cli**: Required for all commands - **Packmind account**: Login via `packmind-cli login` ## License Apache 2.0 - See LICENSE.txt for details. ```