azclaude-copilot 0.4.4 → 0.4.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 CHANGED
@@ -476,11 +476,11 @@ See [SECURITY.md](SECURITY.md) for full details.
476
476
 
477
477
  ## Verified
478
478
 
479
- 1151 tests. Every template, command, capability, agent, hook, and CLI feature verified.
479
+ 1152 tests. Every template, command, capability, agent, hook, and CLI feature verified.
480
480
 
481
481
  ```bash
482
482
  bash tests/test-features.sh
483
- # Results: 1151 passed, 0 failed, 1151 total
483
+ # Results: 1152 passed, 0 failed, 1152 total
484
484
  ```
485
485
 
486
486
  ---
package/bin/copilot.js CHANGED
@@ -216,7 +216,8 @@ for (let session = 1; session <= maxSessions; session++) {
216
216
  const result = spawnSync('claude', [
217
217
  '--dangerously-skip-permissions',
218
218
  '-p', prompt,
219
- '--output-format', 'text'
219
+ '--output-format', 'text',
220
+ ...(deepMode ? ['--model', 'claude-opus-4-6'] : [])
220
221
  ], {
221
222
  cwd: projectDir,
222
223
  stdio: 'inherit',
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "azclaude-copilot",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "AI coding environment — 26 commands, 8 skills, 10 agents, memory, reflexes, evolution. Install once, works on any stack.",
5
5
  "bin": {
6
- "azclaude": "./bin/cli.js",
7
- "azclaude-copilot": "./bin/copilot.js"
6
+ "azclaude": "bin/cli.js",
7
+ "azclaude-copilot": "bin/copilot.js"
8
8
  },
9
9
  "keywords": [
10
10
  "claude",
@@ -18,7 +18,7 @@
18
18
  ],
19
19
  "repository": {
20
20
  "type": "git",
21
- "url": "https://github.com/haytamAroui/AZ-CLAUDE-COPILOT.git"
21
+ "url": "git+https://github.com/haytamAroui/AZ-CLAUDE-COPILOT.git"
22
22
  },
23
23
  "homepage": "https://github.com/haytamAroui/AZ-CLAUDE-COPILOT#readme",
24
24
  "bugs": {