Install pre-written framework files from plugin to project .claude directory
Installs pre-written framework files from the plugin to your project's .claude directory. Use this to set up governance, standards, and templates for your SDLC framework. Supports --force to overwrite existing files and --dry-run to preview changes.
/plugin marketplace add Zal4DW/claude-plugin-test/plugin install sdlc-test-plugin@odta-sdlc-marketplace[--force] [--dry-run]CRITICAL TEST + LIMITATION DISCOVERY: This command tests framework file installation and highlights a plugin system gap.
Expected: Framework files auto-install when plugin is installed
Reality: No installHook or postInstall support in plugin manifest
Workaround: Manual command execution required
This is a test to validate:
Tests the complete framework distribution workflow:
framework-files/ directory.claude/ directoryFrom plugin framework-files/ to project .claude/:
framework-files/CLAUDE.md → .claude/CLAUDE.md
framework-files/governance/*.md → .claude/governance/*.md
framework-files/docs/standards/*.md → .claude/docs/standards/*.md
framework-files/docs/architecture/*.md → .claude/docs/architecture/*.md
framework-files/templates/*.md → .claude/templates/*.md
--force: Overwrite existing files--dry-run: Show what would be installed without actually writing filesWhen invoked, this command will:
Create Directory Structure:
mkdir -p .claude/{governance,docs/{standards,architecture},templates}
Copy Framework Files:
/home/paul/.claude/plugins/cache/sdlc-test-plugin/framework-files/.claude/ in project directoryInstallation Steps:
Generate Report:
Framework Installation Starting...
==================================
Creating directories:
✅ .claude/governance/
✅ .claude/docs/standards/
✅ .claude/docs/architecture/
✅ .claude/templates/
Installing framework files:
✅ CLAUDE.md
✅ governance/AGENTS.md
✅ governance/AGENT-GOVERNANCE.md
✅ docs/standards/code-standards.md
✅ docs/architecture/adr-template.md
✅ templates/issue-template.md
Installation Summary:
====================
Total files: 6
Successful: 6
Failed: 0
Skipped: 0
Framework installation COMPLETE!
Report saved to: framework-installation-report.txt
If successful:
If blocked:
This is the MOST CRITICAL test for framework viability!
If this works, the entire SDLC framework (595+ assets) can be:
claude plugins updateThis test determines if plugin-based framework distribution is production-ready!