@agentic15.com/agentic15-claude-zen 7.0.0 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +20 -0
- package/.claude-plugin/skills/commit.md +52 -0
- package/.claude-plugin/skills/plan.md +45 -0
- package/.claude-plugin/skills/status.md +66 -0
- package/.claude-plugin/skills/sync.md +49 -0
- package/.claude-plugin/skills/task-next.md +36 -0
- package/.claude-plugin/skills/task-start.md +44 -0
- package/.claude-plugin/skills/visual-test.md +77 -0
- package/CHANGELOG.md +124 -0
- package/README.md +151 -511
- package/package.json +21 -2
- package/plugin/index.js +76 -0
- package/plugin/skills/.gitkeep +1 -0
- package/plugin/skills/commit.js +121 -0
- package/plugin/skills/plan.js +92 -0
- package/plugin/skills/status.js +68 -0
- package/plugin/skills/sync.js +90 -0
- package/plugin/skills/task-next.js +79 -0
- package/plugin/skills/task-start.js +102 -0
- package/plugin/skills/visual-test.js +58 -0
- package/plugin/tests/.gitkeep +1 -0
- package/plugin/tests/commit.test.js +127 -0
- package/plugin/tests/e2e-workflow.test.js +330 -0
- package/plugin/tests/plan.test.js +155 -0
- package/plugin/tests/skill-wrapper.test.js +247 -0
- package/plugin/tests/status.test.js +98 -0
- package/plugin/tests/sync.test.js +156 -0
- package/plugin/tests/task-next.test.js +165 -0
- package/plugin/tests/task-start.test.js +211 -0
- package/plugin/tests/visual-test.test.js +148 -0
- package/plugin/utils/skill-wrapper.js +251 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentic15-claude-zen",
|
|
3
|
+
"version": "8.0.0",
|
|
4
|
+
"description": "Claude Code skills plugin for Agentic15 framework - provides native /agentic15:* slash commands",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Agentic15",
|
|
7
|
+
"email": "developers@agentic15.com"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/agentic15/claude-zen",
|
|
10
|
+
"repository": "https://github.com/agentic15/claude-zen",
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"agentic15",
|
|
14
|
+
"workflow",
|
|
15
|
+
"task-management",
|
|
16
|
+
"ai-development",
|
|
17
|
+
"claude-code",
|
|
18
|
+
"productivity"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agentic15:commit
|
|
3
|
+
description: Commit completed task and create pull request
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# agentic15:commit
|
|
7
|
+
|
|
8
|
+
Commit your completed task and create a pull request.
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
/agentic15:commit
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## What it does
|
|
17
|
+
|
|
18
|
+
1. Marks the current task as completed in the task tracker
|
|
19
|
+
2. Stages all changes (including updated TASK-TRACKER.json)
|
|
20
|
+
3. Creates a commit with a descriptive message
|
|
21
|
+
4. Pushes the feature branch to remote
|
|
22
|
+
5. Creates a pull request on GitHub/Azure DevOps
|
|
23
|
+
6. Updates the GitHub issue (if one exists)
|
|
24
|
+
7. Shows the PR URL
|
|
25
|
+
|
|
26
|
+
## Error Handling
|
|
27
|
+
|
|
28
|
+
- **No active task**: Start a task first with `/agentic15:task-next`
|
|
29
|
+
- **Uncommitted changes on main**: You can't commit directly to main branch
|
|
30
|
+
- **No active plan**: Create a plan first
|
|
31
|
+
- **Task tracker not found**: Lock the plan first
|
|
32
|
+
|
|
33
|
+
## Commit Message Format
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
[TASK-XXX] Task Title
|
|
37
|
+
|
|
38
|
+
- Changes made
|
|
39
|
+
- Features added
|
|
40
|
+
- Issues fixed
|
|
41
|
+
|
|
42
|
+
🤖 Generated with Claude Code
|
|
43
|
+
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Next Steps
|
|
47
|
+
|
|
48
|
+
After committing:
|
|
49
|
+
1. Review the PR on GitHub/Azure DevOps
|
|
50
|
+
2. Merge the PR when ready
|
|
51
|
+
3. Run `/agentic15:sync` to sync with main
|
|
52
|
+
4. Start the next task with `/agentic15:task-next`
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agentic15:plan
|
|
3
|
+
description: Create and lock project plans for Agentic15 workflow
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# agentic15:plan
|
|
7
|
+
|
|
8
|
+
Create and lock project plans for the Agentic15 workflow.
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
**Generate a new plan:**
|
|
13
|
+
```
|
|
14
|
+
/agentic15:plan "Build a task management app with React"
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**Lock an existing plan:**
|
|
18
|
+
```
|
|
19
|
+
/agentic15:plan
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## What it does
|
|
23
|
+
|
|
24
|
+
### Generate Plan Mode (with requirements)
|
|
25
|
+
1. Creates `.claude/plans/plan-XXX-generated/` directory
|
|
26
|
+
2. Creates `PROJECT-REQUIREMENTS.txt` with your requirements
|
|
27
|
+
3. Sets the `ACTIVE-PLAN` pointer
|
|
28
|
+
4. Prompts you to tell Claude: "Create the project plan"
|
|
29
|
+
|
|
30
|
+
### Lock Plan Mode (no requirements)
|
|
31
|
+
1. Validates `PROJECT-PLAN.json` exists and is well-formed
|
|
32
|
+
2. Creates `TASK-TRACKER.json` from the plan tasks
|
|
33
|
+
3. Marks the plan as locked
|
|
34
|
+
4. Shows task count and next steps
|
|
35
|
+
|
|
36
|
+
## Error Handling
|
|
37
|
+
|
|
38
|
+
- **No requirements provided and no active plan**: You must provide requirements to generate a new plan
|
|
39
|
+
- **Plan already locked**: The current plan is already locked, start working on tasks
|
|
40
|
+
- **PROJECT-PLAN.json not found**: The plan file hasn't been created yet by Claude
|
|
41
|
+
- **Active plan exists**: You can't create a new plan while one is active
|
|
42
|
+
|
|
43
|
+
## Next Steps
|
|
44
|
+
|
|
45
|
+
After locking: `/agentic15:task-next` to start the first task
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agentic15:status
|
|
3
|
+
description: Show current project and task status
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# agentic15:status
|
|
7
|
+
|
|
8
|
+
Display the current status of your project, plan, and tasks.
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
/agentic15:status
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## What it shows
|
|
17
|
+
|
|
18
|
+
**Plan Information:**
|
|
19
|
+
- Plan ID and name
|
|
20
|
+
- Total number of tasks
|
|
21
|
+
- Completed vs pending tasks
|
|
22
|
+
|
|
23
|
+
**Current Task (if any):**
|
|
24
|
+
- Task ID and title
|
|
25
|
+
- Current status (in_progress)
|
|
26
|
+
- Changed files in working directory
|
|
27
|
+
|
|
28
|
+
**Progress Overview:**
|
|
29
|
+
- Completion percentage
|
|
30
|
+
- Tasks remaining
|
|
31
|
+
- Next suggested action
|
|
32
|
+
|
|
33
|
+
## Example Output
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
📊 Task Status
|
|
37
|
+
|
|
38
|
+
Plan: plan-002-plugin
|
|
39
|
+
Progress: 5/10 completed (5 pending)
|
|
40
|
+
|
|
41
|
+
🔄 Currently working on: TASK-006
|
|
42
|
+
📌 Implement agentic15:commit skill
|
|
43
|
+
|
|
44
|
+
📝 Changed files:
|
|
45
|
+
- plugin/skills/commit.js
|
|
46
|
+
- plugin/tests/commit.test.js
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## When to Use
|
|
50
|
+
|
|
51
|
+
Check status anytime during development:
|
|
52
|
+
- Before starting work each day
|
|
53
|
+
- To see which task you're on
|
|
54
|
+
- To check overall progress
|
|
55
|
+
- To see what files you've modified
|
|
56
|
+
|
|
57
|
+
## Error Handling
|
|
58
|
+
|
|
59
|
+
- **No active plan**: Create a plan first with `/agentic15:plan`
|
|
60
|
+
- **Task tracker not found**: Lock the plan first
|
|
61
|
+
|
|
62
|
+
## Next Steps
|
|
63
|
+
|
|
64
|
+
The status command suggests what to do next:
|
|
65
|
+
- If no task in progress: Start one with `/agentic15:task-next`
|
|
66
|
+
- If task in progress: Continue working or commit when done
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agentic15:sync
|
|
3
|
+
description: Sync with main branch after PR merge
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# agentic15:sync
|
|
7
|
+
|
|
8
|
+
Sync your local repository with the main branch after merging a pull request.
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
/agentic15:sync
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## What it does
|
|
17
|
+
|
|
18
|
+
1. Verifies you're on a feature/plan/admin branch or main
|
|
19
|
+
2. Checks for uncommitted changes (blocks if found)
|
|
20
|
+
3. Verifies the PR has been merged (safety check)
|
|
21
|
+
4. Switches to the main branch
|
|
22
|
+
5. Pulls the latest changes from remote
|
|
23
|
+
6. Deletes the feature/plan/admin branch locally
|
|
24
|
+
7. Shows next steps
|
|
25
|
+
|
|
26
|
+
## When to Use
|
|
27
|
+
|
|
28
|
+
Run this command after:
|
|
29
|
+
- Merging a PR on GitHub/Azure DevOps
|
|
30
|
+
- Completing a task
|
|
31
|
+
- Before starting the next task
|
|
32
|
+
|
|
33
|
+
## Error Handling
|
|
34
|
+
|
|
35
|
+
- **Uncommitted changes detected**: Commit or stash your changes first
|
|
36
|
+
- **Invalid branch**: This command works on feature/plan/admin branches
|
|
37
|
+
- **PR not merged**: Merge the PR before syncing to prevent data loss
|
|
38
|
+
- **Not a git repository**: Run this in a git repository
|
|
39
|
+
|
|
40
|
+
## Safety Features
|
|
41
|
+
|
|
42
|
+
The sync command includes critical safety checks:
|
|
43
|
+
- Blocks if PR is still open (prevents losing work)
|
|
44
|
+
- Blocks if branch has unpushed commits
|
|
45
|
+
- Warns if PR was closed without merging
|
|
46
|
+
|
|
47
|
+
## Next Steps
|
|
48
|
+
|
|
49
|
+
After syncing: `/agentic15:task-next` to start the next task
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agentic15:task-next
|
|
3
|
+
description: Start the next pending task in the active plan
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# agentic15:task-next
|
|
7
|
+
|
|
8
|
+
Automatically start the next pending task in your active plan.
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
/agentic15:task-next
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## What it does
|
|
17
|
+
|
|
18
|
+
1. Finds the next pending task in the task tracker
|
|
19
|
+
2. Switches to main branch and pulls latest changes
|
|
20
|
+
3. Creates a feature branch: `feature/task-XXX`
|
|
21
|
+
4. Marks the task as `in_progress`
|
|
22
|
+
5. Creates a GitHub issue (if auto-create is enabled)
|
|
23
|
+
6. Shows task details and next steps
|
|
24
|
+
|
|
25
|
+
## Error Handling
|
|
26
|
+
|
|
27
|
+
- **No active plan**: You must create and lock a plan first
|
|
28
|
+
- **Task tracker not found**: The plan hasn't been locked yet
|
|
29
|
+
- **No pending tasks**: All tasks are completed! 🎉
|
|
30
|
+
- **Task already in progress**: Complete the current task before starting a new one
|
|
31
|
+
|
|
32
|
+
## Next Steps
|
|
33
|
+
|
|
34
|
+
After starting: Tell Claude "Write code for this task"
|
|
35
|
+
|
|
36
|
+
When done: `/agentic15:commit`
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agentic15:task-start
|
|
3
|
+
description: Start a specific task by ID
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# agentic15:task-start
|
|
7
|
+
|
|
8
|
+
Start a specific task by its ID (e.g., TASK-003) instead of starting the next pending task.
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
/agentic15:task-start TASK-003
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## What it does
|
|
17
|
+
|
|
18
|
+
1. Validates the task ID format (must be TASK-XXX)
|
|
19
|
+
2. Checks that the task exists and is not completed
|
|
20
|
+
3. Switches to main branch and pulls latest changes
|
|
21
|
+
4. Creates a feature branch: `feature/task-XXX`
|
|
22
|
+
5. Marks the task as `in_progress`
|
|
23
|
+
6. Creates a GitHub issue (if auto-create is enabled)
|
|
24
|
+
7. Shows task details and next steps
|
|
25
|
+
|
|
26
|
+
## Task ID Format
|
|
27
|
+
|
|
28
|
+
- Must be uppercase: `TASK-` prefix
|
|
29
|
+
- Must have exactly 3 digits: `001`, `002`, etc.
|
|
30
|
+
- Examples: `TASK-001`, `TASK-042`, `TASK-999`
|
|
31
|
+
|
|
32
|
+
## Error Handling
|
|
33
|
+
|
|
34
|
+
- **No task ID provided**: You must specify which task to start
|
|
35
|
+
- **Invalid task ID format**: Must match `TASK-XXX` format (uppercase, 3 digits)
|
|
36
|
+
- **Task not found**: The specified task doesn't exist in the tracker
|
|
37
|
+
- **Task already completed**: This task has already been finished
|
|
38
|
+
- **Another task in progress**: Complete the current task first
|
|
39
|
+
|
|
40
|
+
## Next Steps
|
|
41
|
+
|
|
42
|
+
After starting: Tell Claude "Write code for this task"
|
|
43
|
+
|
|
44
|
+
When done: `/agentic15:commit`
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agentic15:visual-test
|
|
3
|
+
description: Capture screenshots and console errors for UI debugging
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# agentic15:visual-test
|
|
7
|
+
|
|
8
|
+
Capture screenshots, console errors, and accessibility issues from your web application for AI-assisted debugging.
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
/agentic15:visual-test http://localhost:3000
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## What it does
|
|
17
|
+
|
|
18
|
+
1. Launches Playwright in headless browser mode
|
|
19
|
+
2. Navigates to the specified URL
|
|
20
|
+
3. Captures screenshots (full page + viewport)
|
|
21
|
+
4. Records console errors and warnings
|
|
22
|
+
5. Logs network errors (4xx/5xx responses)
|
|
23
|
+
6. Runs accessibility audit with axe-core
|
|
24
|
+
7. Saves page HTML for debugging
|
|
25
|
+
8. Stores all results in `.claude/visual-test/`
|
|
26
|
+
|
|
27
|
+
## Prerequisites
|
|
28
|
+
|
|
29
|
+
Install Playwright first:
|
|
30
|
+
```bash
|
|
31
|
+
npx playwright install chromium
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Generated Files
|
|
35
|
+
|
|
36
|
+
The command creates these files in `.claude/visual-test/`:
|
|
37
|
+
- `fullpage.png` - Full page screenshot
|
|
38
|
+
- `viewport.png` - Viewport screenshot
|
|
39
|
+
- `console-errors.log` - JavaScript errors (if any)
|
|
40
|
+
- `console-warnings.log` - JavaScript warnings (if any)
|
|
41
|
+
- `network-errors.log` - Failed HTTP requests (if any)
|
|
42
|
+
- `accessibility.log` - A11y violations (if any)
|
|
43
|
+
- `page.html` - Page source for debugging
|
|
44
|
+
|
|
45
|
+
## Error Handling
|
|
46
|
+
|
|
47
|
+
- **No URL provided**: You must specify a URL to test
|
|
48
|
+
- **Invalid URL format**: URL must start with `http://` or `https://`
|
|
49
|
+
- **Playwright not installed**: Install with `npx playwright install chromium`
|
|
50
|
+
|
|
51
|
+
## Example Workflow
|
|
52
|
+
|
|
53
|
+
1. Start your dev server:
|
|
54
|
+
```bash
|
|
55
|
+
npm run dev
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
2. Run visual test:
|
|
59
|
+
```
|
|
60
|
+
/agentic15:visual-test http://localhost:3000
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
3. Ask Claude to analyze results:
|
|
64
|
+
> "Analyze the visual test results in .claude/visual-test/"
|
|
65
|
+
|
|
66
|
+
4. Claude reviews screenshots and logs, suggests fixes
|
|
67
|
+
|
|
68
|
+
5. Implement fixes and re-test
|
|
69
|
+
|
|
70
|
+
## Use Cases
|
|
71
|
+
|
|
72
|
+
- UI regression testing
|
|
73
|
+
- Debugging layout issues
|
|
74
|
+
- Finding console errors
|
|
75
|
+
- Accessibility compliance
|
|
76
|
+
- Network request debugging
|
|
77
|
+
- Cross-page testing
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,130 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
Copyright 2024-2026 agentic15.com
|
|
9
9
|
|
|
10
|
+
## [8.0.0] - 2026-01-05
|
|
11
|
+
|
|
12
|
+
### 🎉 MAJOR RELEASE - Integrated Claude Code Plugin
|
|
13
|
+
|
|
14
|
+
**BREAKING CHANGES**: This release integrates the Claude Code plugin directly into the framework package. Users upgrading from v7.x will need to update their configuration.
|
|
15
|
+
|
|
16
|
+
### Summary
|
|
17
|
+
The Claude Code plugin has been integrated into the main framework package, eliminating the need for a separate `@agentic15.com/claude-code-zen-plugin` package. Users now get both CLI and Claude Code skills in a single installation.
|
|
18
|
+
|
|
19
|
+
### 💥 Breaking Changes
|
|
20
|
+
|
|
21
|
+
**Plugin Integration**
|
|
22
|
+
- **Package Consolidation**: Claude Code plugin now included in `@agentic15.com/agentic15-claude-zen`
|
|
23
|
+
- **Settings Update Required**: Users must update `.claude/settings.json` to use `@agentic15.com/agentic15-claude-zen` instead of `@agentic15.com/claude-code-zen-plugin`
|
|
24
|
+
- **Installation Change**: Single package installation instead of two separate packages
|
|
25
|
+
|
|
26
|
+
**Migration Required**:
|
|
27
|
+
```bash
|
|
28
|
+
# OLD (v7.x)
|
|
29
|
+
npm install -g @agentic15.com/agentic15-claude-zen
|
|
30
|
+
npm install -g @agentic15.com/claude-code-zen-plugin
|
|
31
|
+
|
|
32
|
+
# NEW (v8.0) - Choose one method:
|
|
33
|
+
npx @agentic15.com/agentic15-claude-zen init # No install (recommended)
|
|
34
|
+
npm install --save-dev @agentic15.com/agentic15-claude-zen # Local install
|
|
35
|
+
npm install -g @agentic15.com/agentic15-claude-zen # Global install
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
**Settings Update**:
|
|
39
|
+
```json
|
|
40
|
+
// OLD (.claude/settings.json)
|
|
41
|
+
{
|
|
42
|
+
"plugins": {
|
|
43
|
+
"@agentic15.com/claude-code-zen-plugin": {
|
|
44
|
+
"enabled": true
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// NEW (.claude/settings.json)
|
|
50
|
+
{
|
|
51
|
+
"plugins": {
|
|
52
|
+
"@agentic15.com/agentic15-claude-zen": {
|
|
53
|
+
"enabled": true
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### ✨ Added
|
|
60
|
+
|
|
61
|
+
**Integrated Claude Code Plugin**
|
|
62
|
+
- **7 Skills**: `/agentic15:plan`, `/agentic15:task-next`, `/agentic15:task-start`, `/agentic15:commit`, `/agentic15:sync`, `/agentic15:status`, `/agentic15:visual-test`
|
|
63
|
+
- **Plugin Architecture**: `plugin/` directory with skills, utilities, and tests
|
|
64
|
+
- **Marketplace Support**: `.claude-plugin/` configuration for Claude marketplace distribution
|
|
65
|
+
- **Skill Documentation**: Markdown documentation for all 7 skills
|
|
66
|
+
- **Test Suite**: 85 validation-only tests (100% pass rate, no side effects)
|
|
67
|
+
- **Plugin Entry Point**: `plugin/index.js` with skill exports and metadata
|
|
68
|
+
|
|
69
|
+
**Package Configuration**
|
|
70
|
+
- **claudePlugin Metadata**: Added namespace and skill list to package.json
|
|
71
|
+
- **Test Scripts**: `test:plugin` and `test:all` commands
|
|
72
|
+
- **Keywords**: Added `claude-plugin`, `workflow-automation`, `skills`
|
|
73
|
+
|
|
74
|
+
**Documentation**
|
|
75
|
+
- **INSTALLATION.md**: Complete installation guide for both NPM and marketplace
|
|
76
|
+
- **PUBLISHING.md**: Publishing instructions for dual distribution
|
|
77
|
+
- **E2E-TESTING-GUIDE.md**: End-to-end testing workflows
|
|
78
|
+
- **INTEGRATION-SUMMARY.md**: Detailed integration documentation
|
|
79
|
+
|
|
80
|
+
### 🔧 Changed
|
|
81
|
+
|
|
82
|
+
**Package Structure**
|
|
83
|
+
- **Size**: Increased from ~350KB to 446KB (unpacked) due to plugin integration
|
|
84
|
+
- **Files**: Added `plugin/` and `.claude-plugin/` directories to published package
|
|
85
|
+
- **Total Files**: 80 files (70 framework + 10 plugin)
|
|
86
|
+
|
|
87
|
+
**Marketplace Configuration**
|
|
88
|
+
- **Source Path**: Updated from `./plugin` to `./Agent`
|
|
89
|
+
- **Package Name**: Unified naming as `agentic15-claude-zen`
|
|
90
|
+
|
|
91
|
+
### 📦 Package Statistics
|
|
92
|
+
|
|
93
|
+
**Version**: 8.0.0
|
|
94
|
+
**Size**: 101.4 KB (compressed), 446.1 KB (unpacked)
|
|
95
|
+
**Total Files**: 80
|
|
96
|
+
**Tests**: 85 plugin tests + existing framework tests
|
|
97
|
+
|
|
98
|
+
### 🎯 Benefits
|
|
99
|
+
|
|
100
|
+
- **Single Installation**: One package provides both CLI and Claude Code integration
|
|
101
|
+
- **Version Synchronization**: Framework and plugin always in sync
|
|
102
|
+
- **Simpler Maintenance**: Single package.json, version, and publish command
|
|
103
|
+
- **Better UX**: No confusion about which packages to install
|
|
104
|
+
- **Consistent Naming**: Package name matches repository
|
|
105
|
+
|
|
106
|
+
### 📖 Migration Guide
|
|
107
|
+
|
|
108
|
+
See `INTEGRATION-SUMMARY.md` for complete migration instructions.
|
|
109
|
+
|
|
110
|
+
For existing users:
|
|
111
|
+
1. Uninstall old plugin (if installed): `npm uninstall -g @agentic15.com/claude-code-zen-plugin`
|
|
112
|
+
2. Choose installation method:
|
|
113
|
+
- **npx** (no install): `npx @agentic15.com/agentic15-claude-zen@8.0.0 status`
|
|
114
|
+
- **Local**: `npm install --save-dev @agentic15.com/agentic15-claude-zen@8.0.0`
|
|
115
|
+
- **Global**: `npm install -g @agentic15.com/agentic15-claude-zen@8.0.0`
|
|
116
|
+
3. Update `.claude/settings.json` plugin name (if using explicit config)
|
|
117
|
+
4. Verify: `/plugin list` and `/agentic15:status`
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
## [7.0.1] - 2026-01-04
|
|
122
|
+
|
|
123
|
+
### Fixed
|
|
124
|
+
- **README.md**: Reduced from 806 lines to 340 lines (58% smaller)
|
|
125
|
+
- **Documentation**: Removed embedded platform guides, added links to separate docs
|
|
126
|
+
- **Organization**: GitHub and Azure DevOps setup now link to detailed guides instead of embedding 400+ lines
|
|
127
|
+
|
|
128
|
+
### Changed
|
|
129
|
+
- **README.md**: Clean, lean structure (9.0kB vs 20.8kB)
|
|
130
|
+
- **Platform Integration**: Quick setup + links instead of full embedded documentation
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
10
134
|
## [7.0.0] - 2026-01-04
|
|
11
135
|
|
|
12
136
|
### 🎉 MAJOR RELEASE - Token-Efficient Architecture & Autonomous UI Verification
|