copilot-agent 0.12.0 → 1.0.1
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 +55 -0
- package/dist/index.js +751 -35
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,6 +23,9 @@ Autonomous AI agent manager — auto-resume sessions, discover tasks, run overni
|
|
|
23
23
|
| **`pr`** | Auto-create GitHub Pull Request from session changes |
|
|
24
24
|
| **`log`** | Search, timeline, and export session history |
|
|
25
25
|
| **`template`** | Manage custom task templates (add/list/remove/import/export) |
|
|
26
|
+
| **`schedule`** | Cron-like recurring task scheduler with daemon mode |
|
|
27
|
+
| **`multi`** | Multi-project orchestration — parallel runs, status tracking |
|
|
28
|
+
| **`review`** | AI-powered code review of session changes, diffs, or PRs |
|
|
26
29
|
|
|
27
30
|
All commands support `--agent copilot` or `--agent claude` (auto-detects if omitted).
|
|
28
31
|
|
|
@@ -237,6 +240,58 @@ copilot-agent template export > my-templates.yaml
|
|
|
237
240
|
copilot-agent template import team-templates.yaml
|
|
238
241
|
```
|
|
239
242
|
|
|
243
|
+
### Scheduled tasks
|
|
244
|
+
|
|
245
|
+
```bash
|
|
246
|
+
# Add a recurring schedule
|
|
247
|
+
copilot-agent schedule add nightly-lint \
|
|
248
|
+
--cron "0 2 * * *" \
|
|
249
|
+
--prompt "Fix all lint errors and run tests" \
|
|
250
|
+
--project /path/to/project
|
|
251
|
+
|
|
252
|
+
# List all schedules
|
|
253
|
+
copilot-agent schedule list
|
|
254
|
+
|
|
255
|
+
# Preview what would run next
|
|
256
|
+
copilot-agent schedule dry-run
|
|
257
|
+
|
|
258
|
+
# Start the scheduler daemon
|
|
259
|
+
copilot-agent schedule run
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
### Multi-project orchestration
|
|
263
|
+
|
|
264
|
+
```bash
|
|
265
|
+
# Register projects
|
|
266
|
+
copilot-agent multi add ~/project-a
|
|
267
|
+
copilot-agent multi add ~/project-b
|
|
268
|
+
|
|
269
|
+
# Run tasks on all projects (with Claude, in parallel)
|
|
270
|
+
copilot-agent multi run --agent claude --parallel
|
|
271
|
+
|
|
272
|
+
# Check per-project status
|
|
273
|
+
copilot-agent multi status
|
|
274
|
+
|
|
275
|
+
# Dry-run preview
|
|
276
|
+
copilot-agent multi run --dry-run
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
### AI code review
|
|
280
|
+
|
|
281
|
+
```bash
|
|
282
|
+
# Review latest session changes
|
|
283
|
+
copilot-agent review
|
|
284
|
+
|
|
285
|
+
# Review with security focus
|
|
286
|
+
copilot-agent review --focus security
|
|
287
|
+
|
|
288
|
+
# Review current git diff
|
|
289
|
+
copilot-agent review diff
|
|
290
|
+
|
|
291
|
+
# Review a GitHub PR
|
|
292
|
+
copilot-agent review pr 42 --agent claude
|
|
293
|
+
```
|
|
294
|
+
|
|
240
295
|
## How it works
|
|
241
296
|
|
|
242
297
|
1. **Agent abstraction** — Unified interface for both Copilot CLI and Claude Code
|