azclaude-copilot 0.2.1 → 0.2.3
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 -1
- package/bin/copilot.js +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -154,7 +154,7 @@ After all non-blocked milestones complete:
|
|
|
154
154
|
|
|
155
155
|
## What Makes It Different
|
|
156
156
|
|
|
157
|
-
| Feature | Claude Code | Ralph Loop | Lovable | Cursor | AZCLAUDE
|
|
157
|
+
| Feature | Claude Code | Ralph Loop | Lovable | Cursor | AZCLAUDE |
|
|
158
158
|
|---------|------------|------------|---------|--------|-----------------|
|
|
159
159
|
| Autonomous loop | -- | Yes | -- | -- | Yes |
|
|
160
160
|
| Memory across sessions | -- | Git only | -- | -- | Goals + checkpoints + patterns + reflexes |
|
package/bin/copilot.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
'use strict';
|
|
3
3
|
/**
|
|
4
|
-
* AZCLAUDE
|
|
4
|
+
* AZCLAUDE — Autonomous Runner (copilot mode)
|
|
5
5
|
*
|
|
6
6
|
* The outer loop. Stateless. Dumb on purpose.
|
|
7
7
|
* Restarts Claude Code sessions until COPILOT_COMPLETE or max sessions reached.
|
|
@@ -42,7 +42,7 @@ const maxSessions = parseInt(args[2] || '20', 10);
|
|
|
42
42
|
|
|
43
43
|
if (args.includes('--help') || args.includes('-h')) {
|
|
44
44
|
console.log(`
|
|
45
|
-
AZCLAUDE
|
|
45
|
+
AZCLAUDE — Autonomous Mode
|
|
46
46
|
|
|
47
47
|
Usage:
|
|
48
48
|
npx azclaude-copilot <project-dir> <intent> [max-sessions]
|
|
@@ -134,7 +134,7 @@ if (resolvedProject === homeDir || resolvedProject === '/' || resolvedProject ==
|
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
console.log('\n════════════════════════════════════════════════');
|
|
137
|
-
console.log(' AZCLAUDE
|
|
137
|
+
console.log(' AZCLAUDE — Autonomous Mode');
|
|
138
138
|
console.log(` Project: ${projectDir}`);
|
|
139
139
|
console.log(` Max sessions: ${maxSessions}`);
|
|
140
140
|
console.log(` Mode: ${resuming ? 'RESUME (plan.md exists)' : 'NEW (will run /blueprint)'}`);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azclaude-copilot",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.3",
|
|
4
|
+
"description": "AI coding environment — 26 commands, 8 skills, 7 agents, memory, reflexes, evolution. Install once, works on any stack.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"azclaude": "./bin/cli.js",
|
|
7
7
|
"azclaude-copilot": "./bin/copilot.js"
|