一键导入
package-plugin
Bundle a single marketplace delivery wrapper into a distributable archive, validating metadata and optionally publishing
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Bundle a single marketplace delivery wrapper into a distributable archive, validating metadata and optionally publishing
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Generate a corpus snapshot report — computes dimensions, topology, degree distribution, delta from previous. Helps with cluster, chain, and gap analysis sections.
Detect requests for iterative autonomous agent loops and route to the appropriate loop executor
Orchestrate multi-loop background operations via the Mission Control dashboard — start sessions, dispatch missions, monitor, and stop
Launch an AIWG Mission — durable, audited dynamic agent orchestration toward a completion criterion. AIWG owns the conductor (activity-log, gates, best-output, checkpoint/resume, cost); native primitives drive worker mechanism. Surfaces as /aiwg-mission in Codex (AIWG-owned, no plugin dependency).
Config-driven release orchestration — reads .aiwg/release.config plus optional .aiwg/releases/<plan-id> sidecars and walks the selected release plan's gates
Update AIWG CLI and redeploy frameworks/tools to current project without leaving the session
| namespace | aiwg |
| name | package-plugin |
| platforms | ["all"] |
| description | Bundle a single marketplace delivery wrapper into a distributable archive, validating metadata and optionally publishing |
You bundle a single marketplace delivery wrapper for the AIWG marketplace. In AIWG vocabulary, the plugin layer packages an extension, addon, or framework payload for distribution. You validate metadata, create the package archive, and optionally publish to the registry.
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
| Pattern | Example | Action |
|---|---|---|
| Package plugin | "package plugin sdlc" | Run aiwg package-plugin sdlc |
| Bundle plugin | "bundle plugin voice" | Run aiwg package-plugin voice |
| Publish plugin | "publish plugin marketing" | Run aiwg package-plugin marketing --publish |
| Create package | "create plugin package utils" | Run aiwg package-plugin utils |
| Dry run | "validate sdlc plugin before packaging" | Run aiwg package-plugin sdlc --dry-run |
| With version bump | "package voice with new version" | Run aiwg package-plugin voice --bump patch |
When triggered:
Extract intent:
Run the appropriate command:
# Package a marketplace wrapper (creates archive, no publish)
aiwg package-plugin sdlc
aiwg package-plugin voice
aiwg package-plugin marketing
# Validate only — no archive created
aiwg package-plugin sdlc --dry-run
# Package and publish to marketplace
aiwg package-plugin sdlc --publish
# Bump version before packaging
aiwg package-plugin voice --bump patch
aiwg package-plugin voice --bump minor
# Specify output directory
aiwg package-plugin sdlc --output dist/plugins/
Report the result — confirm archive path, included file count, and publish status.
A plugin package archive (.aiwg-plugin.tar.gz) is a delivery wrapper. It includes the manifest plus the payload files being distributed:
| Contents | Path in Archive |
|---|---|
| Agent definitions | agents/ |
| Command definitions | commands/ |
| Skill definitions | skills/ |
| Rule definitions | rules/ |
| Delivery manifest | plugin.json |
| Changelog | CHANGELOG.md (if present) |
Files excluded from packages: .aiwg/working/, test fixtures, development-only configs.
Before creating the archive, the command automatically runs:
aiwg validate-metadata — all extension definitions must passid, name, description, version requiredPackaging fails if any validation step fails.
User: "Package the voice plugin for release"
Extraction: Package voice plugin, no publish
Action:
aiwg package-plugin voice
Response: "Packaged voice@aiwg v2026.4.0. Archive: dist/plugins/voice-2026.4.0.aiwg-plugin.tar.gz (42 files, 1.2MB). Metadata validation passed. Ready to publish with aiwg package-plugin voice --publish."
User: "Check if the SDLC plugin is ready to package"
Extraction: Dry-run validation
Action:
aiwg package-plugin sdlc --dry-run
Response: "Dry run: sdlc plugin metadata passed (58 agents, 42 commands, 12 skills, 33 rules validated). Ready to package. 1 warning: CHANGELOG.md not found — package will be created without it."
User: "Publish the marketing plugin to the marketplace"
Extraction: Package and publish marketing plugin
Action:
aiwg package-plugin marketing --publish
Response: "Packaged and published marketing@aiwg v2026.4.0 to the AIWG marketplace. Archive: dist/plugins/marketing-2026.4.0.aiwg-plugin.tar.gz. Registry updated."
User: "Bump and package the utils plugin with a patch version"
Extraction: Bump patch version then package
Action:
aiwg package-plugin utils --bump patch
Response: "Bumped utils version 2026.3.5 → 2026.4.0. Packaged. Archive: dist/plugins/utils-2026.4.0.aiwg-plugin.tar.gz."