@agentic15.com/agentic15-claude-zen 5.0.4 → 5.0.5
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/README.md +1 -0
- package/framework/settings.json +4 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -383,6 +383,7 @@ If you need to override the auto-detected values, create or edit `.claude/settin
|
|
|
383
383
|
### Documentation
|
|
384
384
|
|
|
385
385
|
- **[CHANGELOG.md](CHANGELOG.md)** - Version history and release notes
|
|
386
|
+
- **[MIGRATION-GUIDE-v4-to-v5.md](MIGRATION-GUIDE-v4-to-v5.md)** - Upgrade guide from v4.x to v5.x
|
|
386
387
|
|
|
387
388
|
### Support
|
|
388
389
|
|
package/framework/settings.json
CHANGED
|
@@ -68,13 +68,12 @@
|
|
|
68
68
|
},
|
|
69
69
|
"github": {
|
|
70
70
|
"enabled": true,
|
|
71
|
-
"autoCreate":
|
|
72
|
-
"autoUpdate":
|
|
73
|
-
"autoClose":
|
|
74
|
-
"token": null,
|
|
71
|
+
"autoCreate": false,
|
|
72
|
+
"autoUpdate": false,
|
|
73
|
+
"autoClose": false,
|
|
75
74
|
"owner": null,
|
|
76
75
|
"repo": null,
|
|
77
|
-
"comment": "GitHub Issues integration. Configure in .claude/settings.local.json
|
|
76
|
+
"comment": "GitHub Issues integration. Configure via 'npx agentic15 auth' or manually in .claude/settings.local.json. Authentication handled by gh CLI (no token needed). Owner/repo auto-detected from git remote."
|
|
78
77
|
},
|
|
79
78
|
"hooks": {
|
|
80
79
|
"SessionStart": [
|
package/package.json
CHANGED