-
Notifications
You must be signed in to change notification settings - Fork 371
docs: update APM to use shared/apm.md imported workflow #23877
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -125,29 +125,24 @@ metadata: | |||||
|
|
||||||
| Metadata provides a flexible way to add descriptive information to workflows without affecting execution. | ||||||
|
|
||||||
| ### APM Dependencies (`dependencies:`) | ||||||
| ### APM Dependencies (`shared/apm.md` import) | ||||||
|
|
||||||
| Specifies [APM (Agent Package Manager)](https://microsoft.github.io/apm/) packages to install before workflow execution. APM manages AI agent primitives such as skills, prompts, instructions, agents, hooks, and plugins (including the Claude `plugin.json` format). When present, the compiler runs `apm pack` in the activation job and `apm unpack` in the agent job for faster, deterministic startup. | ||||||
| Import `shared/apm.md` to install [APM (Agent Package Manager)](https://microsoft.github.io/apm/) packages before workflow execution. APM manages AI agent primitives such as skills, prompts, instructions, agents, hooks, and plugins (including the Claude `plugin.json` format). | ||||||
|
|
||||||
| ```yaml wrap | ||||||
| # Simple array format (public or same-org packages) | ||||||
| dependencies: | ||||||
| - microsoft/apm-sample-package | ||||||
| - github/awesome-copilot/skills/review-and-refactor | ||||||
| - microsoft/apm-sample-package#v2.0 # version-pinned | ||||||
| ```aw wrap | ||||||
|
||||||
| ```aw wrap | |
| ```yaml wrap |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The NOTE says
dependencies:is "deprecated and no longer supported", which is internally inconsistent (deprecated typically implies still supported). Consider rewording to either "deprecated (still supported until <date/version>)" or "removed/no longer supported" to avoid confusing readers about current behavior.