-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy pathapm.yml
More file actions
39 lines (36 loc) · 1.55 KB
/
Copy pathapm.yml
File metadata and controls
39 lines (36 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: apm
version: 0.10.0
description: APM (Agent Package Manager) -- ship and govern AI agent context
includes: auto
author: Microsoft
license: MIT
# Pinned so every contributor's `apm install` deploys the same tree this
# repo commits (.github/ plus .agents/skills/ via skills convergence),
# instead of auto-detecting whichever harness their machine signals.
# Contributors on another harness opt in with `apm install --target <name>`.
targets:
- copilot
# Local-path manifest deps on the extracted skill packages.
# Each was INLINE in .apm/skills/ until the v2 extraction.
# Extraction unlocks consumer reuse of each primitive standalone
# (consumers can install just a panel for single-PR review / single-
# issue triage, or an orchestrator entrypoint which transitively
# pulls its engine + panels).
#
# User-facing schedulers are declared here. Workers arrive
# transitively:
# - autopilot-issue-triage-scheduler -> autopilot-issue-triage-worker
# - autopilot-issue-delivery-scheduler -> autopilot-issue-delivery-worker
# - autopilot-pr-triage-scheduler -> autopilot-pr-triage-worker
# - autopilot-pr-review-scheduler -> autopilot-pr-review-worker
# - autopilot-pr-merge-worker is summoned by name (never by
# the PR review scheduler)
dependencies:
apm:
- ./packages/autopilot/autopilot-issue-triage-scheduler
- ./packages/autopilot/autopilot-issue-delivery-scheduler
- ./packages/autopilot/autopilot-pr-triage-scheduler
- ./packages/autopilot/autopilot-pr-review-scheduler
- ./packages/autopilot/autopilot-pr-merge-worker
mcp: []
scripts: {}