After distributing your standards, commands, and skills through Packmind, they appear in specific locations in your Git repositories. Each AI coding assistant reads from its own designated folder or file, allowing it to apply your team’s guidelines automatically.Documentation Index
Fetch the complete documentation index at: https://packmind-feat-rename-cli-packmind.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
When you distribute a package containing standards, commands, and skills:- Standards are automatically loaded by your AI assistant when you’re coding. They guide the AI to follow your team’s conventions without any action on your part.
- Commands are instructions you can run on-demand when you need to perform a specific task. You invoke them manually when needed.
- Skills are knowledge packages that AI agents discover and use based on the task at hand. They’re triggered automatically by the AI when relevant.
Where Standards Appear
Standards are placed in specific folders that your AI assistant monitors. Once distributed, they’re automatically applied when the AI generates or reviews code.| AI Assistant | Where Standards Appear |
|---|---|
| Claude Code | .claude/rules/packmind/ folder |
| Cursor | .cursor/rules/packmind/ folder |
| GitHub Copilot | .github/instructions/ folder |
| Continue | .continue/rules/packmind/ folder |
| GitLab Duo | .gitlab/duo/chat-rules.md file |
| Junie | .junie/guidelines.md file |
| AGENTS.md | AGENTS.md file (in repository root) |
How Single-File Rendering Works
Some AI assistants (AGENTS.md, GitLab Duo, Junie) use a single shared file rather than a dedicated folder for standards. Because you may want to add your own instructions to these files, Packmind uses HTML comment markers to delineate its managed section:Standard Scopes and File Patterns
When you define a standard, you can specify a scope using glob patterns (like**/*.spec.ts for test files or src/components/**/*.tsx for React components).
For AI assistants that support native integration (Claude Code, Cursor, GitHub Copilot, and Continue), these glob patterns are included in the rendered files. The AI assistant will automatically apply the standard only to files matching the specified patterns.
For other AI assistants (GitLab Duo, Junie, AGENTS.md), standards are included in a single file without scope filtering—the AI applies them based on context.
Where Commands Appear and How to Use Them
Commands are placed in specific locations, but unlike standards, you need to invoke them manually when you want to use them.| AI Assistant | Where Commands Are Rendered | How to Use |
|---|---|---|
| Claude Code | .claude/commands/ folder | Type /command-name in chat |
| Cursor | .cursor/commands/ folder | Type /command-name in chat |
| GitHub Copilot | .github/prompts/ | Type /command-name in chat |
| Continue | .continue/prompts/ | Type /command-name in chat |
| GitLab Duo | Not rendered (use source) | Execute @.packmind/commands/command-name.md |
| Junie | Not rendered (use source) | Execute @.packmind/commands/command-name.md |
| AGENTS.md | Not rendered (use source) | Execute @.packmind/commands/command-name.md |
Using Slash Commands (Claude Code, Cursor, GitHub Copilot, Continue)
For AI assistants with native slash command support (Claude Code, Cursor, GitHub Copilot, and Continue), commands are rendered in dedicated folders and can be invoked using slash commands:Direct Source File Invocation (GitLab Duo, Junie, AGENTS.md)
For AI assistants without native command rendering (GitLab Duo, Junie, and AGENTS.md), commands are not rendered in agent-specific files. Instead, you must reference the source command file directly from the.packmind/commands/ folder:
.packmind/commands/ folder and follow its instructions.
All commands are user-invoked—they only run when you explicitly call them.
This is different from standards, which are applied automatically by the AI.
Where Skills Appear
Skills are folders of instructions, scripts, and resources that AI agents can discover and use to perform tasks more accurately. Unlike commands which require explicit invocation, skills are agent-discovered—the AI automatically loads relevant skills based on the task at hand.| AI Assistant | Where Skills Appear |
|---|---|
| GitHub Copilot | .github/skills/{skill-slug}/SKILL.md |
| Claude Code | .claude/skills/{skill-slug}/SKILL.md |
| Cursor | .cursor/skills/{skill-slug}/SKILL.md |
Skills are currently available for GitHub Copilot, Claude Code, and Cursor.
Other AI assistants do not support skill rendering.
The Source Files
Regardless of which AI assistant you use, Packmind always creates source files in the.packmind/ folder:
- Standards:
.packmind/standards/folder - Commands:
.packmind/commands/folder - Skills:
.packmind/skills/folder
.claude/ or .cursor/) are generated from these sources during distribution.
Troubleshooting
I don’t see my commands available with slash commands
Solution: Slash commands (/command-name) are only supported by Claude Code, Cursor, GitHub Copilot, and Continue. For other AI assistants, reference the command file directly using “Execute @.packmind/commands/command-name.md”.
My standards aren’t being applied
Solution:- Verify your organization has enabled the AI assistant in Settings → Distribution → Rendering
- Make sure you’ve distributed the package containing the standards
- Check that the standard files exist in the appropriate folder for your AI assistant
I can’t find the command files
Solution:- Ensure you’ve distributed the package containing the commands
- Check the
.packmind/commands/folder for the source files - For Claude Code, Cursor, or GitHub Copilot: Verify the AI assistant-specific folder exists (e.g.,
.cursor/commands/) - For GitLab Duo, Junie, or AGENTS.md: Commands are not rendered separately—use the files directly from
.packmind/commands/
The AI assistant isn’t following my standards
Solution:- Check that the standard scope (file patterns) matches the files you’re working with
- Verify the standard was distributed to the correct AI assistant
- Try referencing the standard explicitly in your prompt if needed
I can’t find my skills
Solution:- Skills are only rendered for GitHub Copilot, Claude Code, and Cursor
- Check the
.packmind/skills/folder for the source files - For GitHub Copilot: Check
.github/skills/{skill-slug}/SKILL.md - For Claude Code: Check
.claude/skills/{skill-slug}/SKILL.md - For Cursor: Check
.cursor/skills/{skill-slug}/SKILL.md
Related Documentation
- Manage AI Agent Rendering - Configure which AI assistants receive your artifacts
- Distribute Artifacts - Learn how to distribute packages to repositories
- Standards Management - Create and manage coding standards
- Commands Management - Create and manage reusable commands
- Skills Management - Create and manage reusable skills