@aiwg/cli 2026.8.0 → 2026.8.2
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 +33 -0
- package/agentic/code/providers/capability-matrix.yaml +511 -0
- package/agentic/code/providers/model-capabilities.v1.json +120 -0
- package/agentic/code/providers/model-catalog.v1.json +96 -0
- package/agentic/code/providers/model-policy-evaluations.v1.json +50 -0
- package/agentic/code/providers/premium-model-allowlist.v1.json +36 -0
- package/bin/aiwg.mjs +14 -10
- package/dist/src/api/index.d.ts +1 -0
- package/dist/src/api/index.js +1 -0
- package/dist/src/artifacts/cli.js +2 -0
- package/dist/src/artifacts/types.js +4 -0
- package/dist/src/auth/client.js +209 -0
- package/dist/src/auth/config.js +38 -0
- package/dist/src/auth/credential-store.js +141 -0
- package/dist/src/auth/resource-credentials.js +25 -0
- package/dist/src/auth/types.js +2 -0
- package/dist/src/channel/manager.mjs +5 -5
- package/dist/src/cli/handlers/auth.js +125 -0
- package/dist/src/cli/handlers/help.js +1 -0
- package/dist/src/cli/handlers/index.js +3 -1
- package/dist/src/cli/handlers/install.js +42 -4
- package/dist/src/cli/handlers/marketplace.js +375 -122
- package/dist/src/cli/handlers/resource-versions.js +2 -0
- package/dist/src/cli/handlers/sessions.js +23 -5
- package/dist/src/cli/handlers/subcommands.js +10 -1
- package/dist/src/cli/handlers/use.js +342 -43
- package/dist/src/config/gitignore.js +1 -0
- package/dist/src/extensions/commands/definitions.js +19 -0
- package/dist/src/marketplace/exchange.js +602 -0
- package/dist/src/marketplace/provenance-types.js +19 -0
- package/dist/src/marketplace/provenance.js +834 -0
- package/dist/src/memory/canonical-context.js +342 -0
- package/dist/src/memory/context-pack.js +282 -0
- package/dist/src/memory/index.js +4 -0
- package/dist/src/memory/intake.js +118 -0
- package/dist/src/packages/adapters/git.js +79 -29
- package/dist/src/packages/package-discovery.js +81 -0
- package/dist/src/packages/package-registry.js +2 -0
- package/dist/src/packages/registry.js +119 -20
- package/dist/src/resources/resolver.js +1 -0
- package/dist/src/resources/web-release.d.ts +3 -1
- package/dist/src/resources/web-release.js +14 -6
- package/dist/src/serve/agentic-sandbox-fleet-client.js +213 -0
- package/dist/src/serve/fleet-mission-conductor.js +293 -0
- package/dist/src/sessions/index.js +1 -0
- package/dist/src/sessions/output-registration.js +338 -0
- package/dist/src/sessions/promotion.js +73 -2
- package/dist/src/sessions/repository.js +2 -1
- package/dist/src/update/notifier.mjs +13 -2
- package/package.json +8 -1
- package/tools/_resolve-impl.mjs +74 -0
- package/tools/agents/deploy-agents.mjs +962 -0
- package/tools/agents/providers/base.mjs +2954 -0
- package/tools/agents/providers/claude.mjs +711 -0
- package/tools/agents/providers/codex.mjs +699 -0
- package/tools/agents/providers/copilot.mjs +659 -0
- package/tools/agents/providers/cursor.mjs +714 -0
- package/tools/agents/providers/factory.mjs +1130 -0
- package/tools/agents/providers/hermes.mjs +663 -0
- package/tools/agents/providers/hook-capabilities.mjs +85 -0
- package/tools/agents/providers/model-role.mjs +56 -0
- package/tools/agents/providers/openclaw-translator.mjs +348 -0
- package/tools/agents/providers/openclaw.mjs +680 -0
- package/tools/agents/providers/opencode.mjs +675 -0
- package/tools/agents/providers/openhuman.mjs +292 -0
- package/tools/agents/providers/warp.mjs +413 -0
- package/tools/agents/providers/windsurf.mjs +748 -0
- package/tools/commands/deploy-prompts-codex.mjs +336 -0
- package/tools/plugin/package-plugins.mjs +1013 -0
- package/tools/skills/deploy-skills-codex.mjs +571 -0
package/README.md
CHANGED
|
@@ -4,6 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
# @aiwg/cli
|
|
6
6
|
|
|
7
|
+
Paid web resources support passwordless login through `aiwg auth login` (or
|
|
8
|
+
`--device` for headless use), `aiwg auth status`, and `aiwg auth logout`.
|
|
9
|
+
Tokens are held in the native operating-system credential store. The mode-0600
|
|
10
|
+
file fallback is disabled unless explicitly selected and allowed.
|
|
11
|
+
|
|
7
12
|
**The agent-optimized execution layer for AIWG**
|
|
8
13
|
|
|
9
14
|
AIWG skills and agents use this CLI to perform common operations with
|
|
@@ -708,6 +713,34 @@ modify a project still run locally under the operator's permissions. A skill
|
|
|
708
713
|
may direct the CLI to write project artifacts or provider adapters, but the
|
|
709
714
|
release host never receives authority to mutate the project.
|
|
710
715
|
|
|
716
|
+
The lightweight package includes a bounded local runtime for packaging and
|
|
717
|
+
installing external addon-shaped bundles. It does not include AIWG's full
|
|
718
|
+
framework corpus. A project-local wrapper under `.aiwg/plugins/<id>/` can be
|
|
719
|
+
packaged from either its id or its path:
|
|
720
|
+
|
|
721
|
+
```bash
|
|
722
|
+
aiwg package-plugin my-plugin --provider all
|
|
723
|
+
aiwg package-plugin .aiwg/plugins/my-plugin --provider all
|
|
724
|
+
```
|
|
725
|
+
|
|
726
|
+
External bundles have an explicit installation choice:
|
|
727
|
+
|
|
728
|
+
```bash
|
|
729
|
+
# Project-local (default): deploy provider artifacts into this project and
|
|
730
|
+
# refresh the project artifact + Fortemi indices.
|
|
731
|
+
aiwg use my-plugin --provider claude --scope project
|
|
732
|
+
|
|
733
|
+
# Global: install the wrapper under ~/.aiwg, deploy to the provider's
|
|
734
|
+
# supported user paths, and refresh the shared user artifact + Fortemi indices.
|
|
735
|
+
aiwg use my-plugin --provider claude --global
|
|
736
|
+
```
|
|
737
|
+
|
|
738
|
+
`--scope user` remains the additive compatibility form: it leaves the
|
|
739
|
+
project deployment in place and mirrors supported artifacts to user scope.
|
|
740
|
+
`--global` is the no-project-provider-artifacts form. Providers differ in
|
|
741
|
+
their native user-level surfaces, so unsupported combinations fail with an
|
|
742
|
+
explicit provider-contract error instead of silently deploying zero files.
|
|
743
|
+
|
|
711
744
|
Some skills require the full local corpus, source templates, or authoring
|
|
712
745
|
assets. When a selected workflow reports that requirement, install the full
|
|
713
746
|
distribution:
|
|
@@ -0,0 +1,511 @@
|
|
|
1
|
+
# Provider Capability Matrix
|
|
2
|
+
#
|
|
3
|
+
# Single authoritative source of truth for what each provider supports
|
|
4
|
+
# natively vs. via AIWG emulation. Machine-readable; consumed by:
|
|
5
|
+
# - src/providers/capability-matrix.ts (TypeScript loader)
|
|
6
|
+
# - aiwg runtime-info --capabilities (CLI display)
|
|
7
|
+
# - aiwg steward capabilities (steward awareness)
|
|
8
|
+
# - Scheduler (#597), Agent Teams (#598), Steward (#599) routing
|
|
9
|
+
#
|
|
10
|
+
# @issue #604
|
|
11
|
+
# @unblocks #597, #598, #599
|
|
12
|
+
|
|
13
|
+
version: "1.0"
|
|
14
|
+
|
|
15
|
+
providers:
|
|
16
|
+
claude-code:
|
|
17
|
+
display_name: Claude Code
|
|
18
|
+
status: stable
|
|
19
|
+
daemon_tier: unsupported
|
|
20
|
+
daemon_pty_adapter: false
|
|
21
|
+
artifact_paths:
|
|
22
|
+
agents: .claude/agents/
|
|
23
|
+
commands: .claude/commands/
|
|
24
|
+
skills: .claude/skills/
|
|
25
|
+
rules: .claude/rules/
|
|
26
|
+
behaviors: .claude/rules/behaviors/
|
|
27
|
+
native_features:
|
|
28
|
+
cron: true
|
|
29
|
+
agent_teams: true
|
|
30
|
+
tasks: true
|
|
31
|
+
mcp: true
|
|
32
|
+
behaviors: false
|
|
33
|
+
mission_control: false
|
|
34
|
+
daemon: false
|
|
35
|
+
emulation:
|
|
36
|
+
cron: native
|
|
37
|
+
agent_teams: native
|
|
38
|
+
tasks: native
|
|
39
|
+
mcp: native
|
|
40
|
+
behaviors: hooks
|
|
41
|
+
mission_control: aiwg-mc
|
|
42
|
+
daemon: null
|
|
43
|
+
hook_wiring:
|
|
44
|
+
at_link_support: true
|
|
45
|
+
hook_file: AIWG.md
|
|
46
|
+
hook_directive: "@AIWG.md"
|
|
47
|
+
context_file: CLAUDE.md
|
|
48
|
+
# Interactive-question (native UX) capability — consumed by the native-ux-tools
|
|
49
|
+
# rule and steward routing (#1668). `native` => agent may call the tool directly.
|
|
50
|
+
interaction:
|
|
51
|
+
structured_questions: native
|
|
52
|
+
tool: AskUserQuestion
|
|
53
|
+
notes: Always available in the agent tool surface.
|
|
54
|
+
deploy_target: project
|
|
55
|
+
aggregated_output: false
|
|
56
|
+
agent_capabilities:
|
|
57
|
+
default:
|
|
58
|
+
context_window: 200000
|
|
59
|
+
max_output_tokens: 12000
|
|
60
|
+
max_tool_calls: 40
|
|
61
|
+
max_concurrent_subagents: 4
|
|
62
|
+
supports_streaming: true
|
|
63
|
+
million_context_requires_extra_usage: true
|
|
64
|
+
quota_available: false
|
|
65
|
+
recovery:
|
|
66
|
+
context_overflow: retry_with_prefiltered_context
|
|
67
|
+
quota_exhausted: retry_with_standard_context
|
|
68
|
+
timeout: retry_with_smaller_scope
|
|
69
|
+
architecture-designer:
|
|
70
|
+
context_window: 200000
|
|
71
|
+
api-designer:
|
|
72
|
+
context_window: 200000
|
|
73
|
+
notes: Avoid 1M-context model unless extra usage is enabled.
|
|
74
|
+
requirements-analyst:
|
|
75
|
+
context_window: 200000
|
|
76
|
+
notes: Avoid 1M-context model unless extra usage is enabled.
|
|
77
|
+
|
|
78
|
+
codex:
|
|
79
|
+
display_name: OpenAI Codex
|
|
80
|
+
aliases:
|
|
81
|
+
- openai
|
|
82
|
+
status: stable
|
|
83
|
+
daemon_tier: unsupported
|
|
84
|
+
daemon_pty_adapter: false
|
|
85
|
+
artifact_paths:
|
|
86
|
+
agents: .codex/agents/
|
|
87
|
+
commands: "~/.codex/prompts/"
|
|
88
|
+
# Project-local .agents/skills/ is the cross-provider canonical path
|
|
89
|
+
# codex-rs scans (codex-rs/core-skills/src/loader.rs). The legacy
|
|
90
|
+
# ~/.codex/skills/ home dir is deprecated and pruned on deploy — writing
|
|
91
|
+
# both made codex list every kernel skill twice (#766 regression fix).
|
|
92
|
+
skills: .agents/skills/
|
|
93
|
+
skills_legacy_deprecated: "~/.codex/skills/"
|
|
94
|
+
rules: .codex/rules/
|
|
95
|
+
behaviors: .codex/rules/behaviors/
|
|
96
|
+
native_features:
|
|
97
|
+
cron: false
|
|
98
|
+
agent_teams: false
|
|
99
|
+
tasks: false
|
|
100
|
+
mcp: false
|
|
101
|
+
behaviors: false
|
|
102
|
+
mission_control: false
|
|
103
|
+
daemon: false
|
|
104
|
+
emulation:
|
|
105
|
+
cron: external-trigger
|
|
106
|
+
agent_teams: aiwg-mc
|
|
107
|
+
tasks: aiwg-mc
|
|
108
|
+
mcp: null
|
|
109
|
+
behaviors: aiwg-mc
|
|
110
|
+
mission_control: aiwg-mc
|
|
111
|
+
daemon: null
|
|
112
|
+
hook_wiring:
|
|
113
|
+
at_link_support: false
|
|
114
|
+
hook_file: AIWG-codex.md
|
|
115
|
+
fallback: full-inject
|
|
116
|
+
context_file: CODEX.md
|
|
117
|
+
# Interactive-question (native UX) capability — see native-ux-tools rule (#1668).
|
|
118
|
+
# Agent-initiated `request_user_input` is mode-gated and OFF by default
|
|
119
|
+
# (feature `default_mode_request_user_input`, "under development"); MCP elicitation
|
|
120
|
+
# (`tool_call_mcp_elicitation`, stable) is the server-initiated structured path.
|
|
121
|
+
interaction:
|
|
122
|
+
structured_questions: mode_gated
|
|
123
|
+
tool: request_user_input
|
|
124
|
+
feature_flag: default_mode_request_user_input
|
|
125
|
+
default_available: false
|
|
126
|
+
mcp_elicitation: stable
|
|
127
|
+
fallback: markdown
|
|
128
|
+
notes: >-
|
|
129
|
+
In Default mode the agent has no interactive-question tool; falls back to
|
|
130
|
+
formatted markdown. Structured forms reach the user via MCP elicitation.
|
|
131
|
+
deploy_target: mixed
|
|
132
|
+
aggregated_output: true
|
|
133
|
+
agent_capabilities:
|
|
134
|
+
default:
|
|
135
|
+
context_window: 200000
|
|
136
|
+
max_output_tokens: 12000
|
|
137
|
+
max_tool_calls: 40
|
|
138
|
+
max_concurrent_subagents: 4
|
|
139
|
+
supports_streaming: true
|
|
140
|
+
million_context_requires_extra_usage: false
|
|
141
|
+
quota_available: true
|
|
142
|
+
recovery:
|
|
143
|
+
context_overflow: retry_with_prefiltered_context
|
|
144
|
+
quota_exhausted: retry_with_different_model
|
|
145
|
+
timeout: retry_with_smaller_scope
|
|
146
|
+
|
|
147
|
+
copilot:
|
|
148
|
+
display_name: GitHub Copilot
|
|
149
|
+
status: stable
|
|
150
|
+
daemon_tier: unsupported
|
|
151
|
+
daemon_pty_adapter: false
|
|
152
|
+
artifact_paths:
|
|
153
|
+
agents: .github/agents/
|
|
154
|
+
commands: .github/agents/
|
|
155
|
+
skills: .github/skills/
|
|
156
|
+
rules: .github/copilot-rules/
|
|
157
|
+
behaviors: .github/instructions/aiwg-behaviors/
|
|
158
|
+
native_features:
|
|
159
|
+
cron: false
|
|
160
|
+
agent_teams: false
|
|
161
|
+
tasks: false
|
|
162
|
+
mcp: false
|
|
163
|
+
behaviors: false
|
|
164
|
+
mission_control: false
|
|
165
|
+
daemon: false
|
|
166
|
+
emulation:
|
|
167
|
+
cron: null
|
|
168
|
+
agent_teams: aiwg-mc
|
|
169
|
+
tasks: aiwg-mc
|
|
170
|
+
mcp: null
|
|
171
|
+
behaviors: aiwg-mc
|
|
172
|
+
mission_control: aiwg-mc
|
|
173
|
+
daemon: null
|
|
174
|
+
hook_wiring:
|
|
175
|
+
at_link_support: false
|
|
176
|
+
hook_file: AIWG-copilot.md
|
|
177
|
+
fallback: full-inject
|
|
178
|
+
context_file: .github/copilot-instructions.md
|
|
179
|
+
deploy_target: project
|
|
180
|
+
aggregated_output: false
|
|
181
|
+
|
|
182
|
+
factory:
|
|
183
|
+
display_name: Factory AI
|
|
184
|
+
status: stable
|
|
185
|
+
# droid CLI runs headless via `droid exec`; AIWG daemon provides persistence layer
|
|
186
|
+
daemon_tier: unsupported
|
|
187
|
+
daemon_pty_adapter: false
|
|
188
|
+
artifact_paths:
|
|
189
|
+
agents: .factory/droids/
|
|
190
|
+
commands: .factory/commands/
|
|
191
|
+
skills: .factory/skills/
|
|
192
|
+
rules: .factory/rules/
|
|
193
|
+
behaviors: .factory/rules/behaviors/
|
|
194
|
+
native_features:
|
|
195
|
+
cron: false
|
|
196
|
+
agent_teams: true # Missions (multi-agent orchestration)
|
|
197
|
+
tasks: true # Task tool for subagent delegation
|
|
198
|
+
mcp: true # Native MCP support (stdio + HTTP transports)
|
|
199
|
+
behaviors: false
|
|
200
|
+
mission_control: true # Factory Missions maps to MC concept
|
|
201
|
+
daemon: false
|
|
202
|
+
emulation:
|
|
203
|
+
cron: null
|
|
204
|
+
agent_teams: null # native Missions
|
|
205
|
+
tasks: null # native Task tool
|
|
206
|
+
mcp: null # native MCP
|
|
207
|
+
behaviors: aiwg-mc
|
|
208
|
+
mission_control: null # native Missions
|
|
209
|
+
daemon: null
|
|
210
|
+
hook_wiring:
|
|
211
|
+
at_link_support: false
|
|
212
|
+
hook_file: AIWG-factory.md
|
|
213
|
+
fallback: full-inject
|
|
214
|
+
context_file: AGENTS.md
|
|
215
|
+
deploy_target: project
|
|
216
|
+
aggregated_output: false
|
|
217
|
+
|
|
218
|
+
cursor:
|
|
219
|
+
display_name: Cursor IDE
|
|
220
|
+
status: stable
|
|
221
|
+
# Cursor requires a display server (VS Code extension host) — daemon not supported
|
|
222
|
+
daemon_tier: unsupported
|
|
223
|
+
daemon_pty_adapter: false
|
|
224
|
+
artifact_paths:
|
|
225
|
+
agents: .cursor/agents/
|
|
226
|
+
commands: .cursor/commands/
|
|
227
|
+
skills: .cursor/skills/
|
|
228
|
+
rules: .cursor/rules/
|
|
229
|
+
behaviors: .cursor/rules/behaviors/
|
|
230
|
+
native_features:
|
|
231
|
+
cron: false
|
|
232
|
+
agent_teams: false
|
|
233
|
+
tasks: false
|
|
234
|
+
mcp: false
|
|
235
|
+
behaviors: false
|
|
236
|
+
mission_control: false
|
|
237
|
+
daemon: false
|
|
238
|
+
emulation:
|
|
239
|
+
cron: null
|
|
240
|
+
agent_teams: aiwg-mc
|
|
241
|
+
tasks: aiwg-mc
|
|
242
|
+
mcp: null
|
|
243
|
+
behaviors: aiwg-mc
|
|
244
|
+
mission_control: aiwg-mc
|
|
245
|
+
daemon: null
|
|
246
|
+
hook_wiring:
|
|
247
|
+
at_link_support: true
|
|
248
|
+
hook_file: AIWG-cursor.md
|
|
249
|
+
hook_directive: "@AIWG-cursor.md"
|
|
250
|
+
context_file: .cursorrules
|
|
251
|
+
deploy_target: project
|
|
252
|
+
aggregated_output: false
|
|
253
|
+
|
|
254
|
+
opencode:
|
|
255
|
+
display_name: OpenCode
|
|
256
|
+
status: stable
|
|
257
|
+
daemon_tier: unsupported
|
|
258
|
+
daemon_pty_adapter: false
|
|
259
|
+
artifact_paths:
|
|
260
|
+
agents: .opencode/agent/
|
|
261
|
+
commands: .opencode/command/
|
|
262
|
+
skills: .opencode/skill/
|
|
263
|
+
rules: .opencode/rule/
|
|
264
|
+
behaviors: .opencode/rule/behaviors/
|
|
265
|
+
native_features:
|
|
266
|
+
cron: false
|
|
267
|
+
agent_teams: false
|
|
268
|
+
tasks: false
|
|
269
|
+
mcp: false
|
|
270
|
+
behaviors: false
|
|
271
|
+
mission_control: false
|
|
272
|
+
daemon: false
|
|
273
|
+
emulation:
|
|
274
|
+
cron: null
|
|
275
|
+
agent_teams: aiwg-mc
|
|
276
|
+
tasks: aiwg-mc
|
|
277
|
+
mcp: null
|
|
278
|
+
behaviors: aiwg-mc
|
|
279
|
+
mission_control: aiwg-mc
|
|
280
|
+
daemon: null
|
|
281
|
+
hook_wiring:
|
|
282
|
+
at_link_support: true
|
|
283
|
+
hook_file: AIWG-opencode.md
|
|
284
|
+
hook_directive: "@AIWG-opencode.md"
|
|
285
|
+
context_file: .opencode/context.md
|
|
286
|
+
deploy_target: project
|
|
287
|
+
aggregated_output: false
|
|
288
|
+
|
|
289
|
+
warp:
|
|
290
|
+
display_name: Warp Terminal
|
|
291
|
+
status: stable
|
|
292
|
+
daemon_tier: unsupported
|
|
293
|
+
daemon_pty_adapter: false
|
|
294
|
+
artifact_paths:
|
|
295
|
+
agents: .warp/agents/
|
|
296
|
+
commands: .warp/commands/
|
|
297
|
+
skills: .warp/skills/
|
|
298
|
+
skills_cross_agent: .agents/skills/
|
|
299
|
+
rules: .warp/rules/
|
|
300
|
+
behaviors: .warp/rules/behaviors/
|
|
301
|
+
native_features:
|
|
302
|
+
cron: false
|
|
303
|
+
agent_teams: false
|
|
304
|
+
tasks: false
|
|
305
|
+
mcp: false
|
|
306
|
+
behaviors: false
|
|
307
|
+
mission_control: false
|
|
308
|
+
daemon: false
|
|
309
|
+
emulation:
|
|
310
|
+
cron: null
|
|
311
|
+
agent_teams: aiwg-mc
|
|
312
|
+
tasks: aiwg-mc
|
|
313
|
+
mcp: null
|
|
314
|
+
behaviors: aiwg-mc
|
|
315
|
+
mission_control: aiwg-mc
|
|
316
|
+
daemon: null
|
|
317
|
+
hook_wiring:
|
|
318
|
+
at_link_support: true
|
|
319
|
+
hook_file: AIWG-warp.md
|
|
320
|
+
hook_directive: "@AIWG-warp.md"
|
|
321
|
+
context_file: WARP.md
|
|
322
|
+
deploy_target: project
|
|
323
|
+
aggregated_output: true
|
|
324
|
+
|
|
325
|
+
windsurf:
|
|
326
|
+
display_name: Windsurf
|
|
327
|
+
status: experimental
|
|
328
|
+
# Windsurf is an IDE extension requiring VS Code host — daemon not supported
|
|
329
|
+
daemon_tier: unsupported
|
|
330
|
+
daemon_pty_adapter: false
|
|
331
|
+
artifact_paths:
|
|
332
|
+
agents: .windsurf/agents/
|
|
333
|
+
commands: .windsurf/workflows/
|
|
334
|
+
skills: .windsurf/skills/
|
|
335
|
+
skills_cross_agent: .agents/skills/
|
|
336
|
+
rules: .windsurf/rules/
|
|
337
|
+
behaviors: .windsurf/rules/behaviors/
|
|
338
|
+
native_features:
|
|
339
|
+
cron: false
|
|
340
|
+
agent_teams: false
|
|
341
|
+
tasks: false
|
|
342
|
+
mcp: false
|
|
343
|
+
behaviors: false
|
|
344
|
+
mission_control: false
|
|
345
|
+
daemon: false
|
|
346
|
+
emulation:
|
|
347
|
+
cron: null
|
|
348
|
+
agent_teams: aiwg-mc
|
|
349
|
+
tasks: aiwg-mc
|
|
350
|
+
mcp: null
|
|
351
|
+
behaviors: aiwg-mc
|
|
352
|
+
mission_control: aiwg-mc
|
|
353
|
+
daemon: null
|
|
354
|
+
hook_wiring:
|
|
355
|
+
at_link_support: false
|
|
356
|
+
hook_file: AIWG-windsurf.md
|
|
357
|
+
fallback: full-inject
|
|
358
|
+
context_file: AGENTS.md
|
|
359
|
+
deploy_target: project
|
|
360
|
+
aggregated_output: true
|
|
361
|
+
|
|
362
|
+
hermes:
|
|
363
|
+
display_name: Hermes
|
|
364
|
+
status: experimental
|
|
365
|
+
daemon_tier: unsupported
|
|
366
|
+
daemon_pty_adapter: false
|
|
367
|
+
artifact_paths:
|
|
368
|
+
# MCP is OPTIONAL for Hermes (validated v2026.5.13, #1527): it integrates
|
|
369
|
+
# like Claude Code / Codex via file deploy + aiwg discover/show + AGENTS.md
|
|
370
|
+
# bridge. The "MCP:" entries below are the optional enrichment path, not a
|
|
371
|
+
# requirement. Broader MCP modernization: #1533.
|
|
372
|
+
agents: AGENTS.md
|
|
373
|
+
commands: "AGENTS.md bridge + aiwg discover/show (MCP command-run optional)"
|
|
374
|
+
skills: "~/.hermes/skills/"
|
|
375
|
+
skills_cross_agent: "~/.hermes/skills/.aiwg/"
|
|
376
|
+
rules: "AGENTS.md ### Rule sections + aiwg show rule (MCP rule-list/rule-show optional)"
|
|
377
|
+
behaviors: .hermes/behaviors/
|
|
378
|
+
native_features:
|
|
379
|
+
cron: false
|
|
380
|
+
agent_teams: false
|
|
381
|
+
tasks: false
|
|
382
|
+
mcp: true
|
|
383
|
+
behaviors: false
|
|
384
|
+
mission_control: false
|
|
385
|
+
daemon: false
|
|
386
|
+
emulation:
|
|
387
|
+
cron: null
|
|
388
|
+
agent_teams: aiwg-mc
|
|
389
|
+
tasks: aiwg-mc
|
|
390
|
+
mcp: native
|
|
391
|
+
behaviors: aiwg-mc
|
|
392
|
+
mission_control: aiwg-mc
|
|
393
|
+
daemon: null
|
|
394
|
+
hook_wiring:
|
|
395
|
+
at_link_support: false
|
|
396
|
+
hook_file: .hermes.md
|
|
397
|
+
fallback: full-inject
|
|
398
|
+
context_file: AGENTS.md
|
|
399
|
+
deploy_target: mixed
|
|
400
|
+
aggregated_output: true
|
|
401
|
+
|
|
402
|
+
openclaw:
|
|
403
|
+
display_name: OpenClaw
|
|
404
|
+
status: stable
|
|
405
|
+
daemon_tier: unsupported
|
|
406
|
+
daemon_pty_adapter: false
|
|
407
|
+
artifact_paths:
|
|
408
|
+
agents: "~/.openclaw/agents/"
|
|
409
|
+
commands: "~/.openclaw/commands/"
|
|
410
|
+
skills: "~/.openclaw/skills/"
|
|
411
|
+
rules: "~/.openclaw/rules/"
|
|
412
|
+
behaviors: "~/.openclaw/behaviors/"
|
|
413
|
+
native_features:
|
|
414
|
+
cron: false
|
|
415
|
+
agent_teams: false
|
|
416
|
+
tasks: false
|
|
417
|
+
mcp: true
|
|
418
|
+
behaviors: true
|
|
419
|
+
mission_control: false
|
|
420
|
+
daemon: false
|
|
421
|
+
emulation:
|
|
422
|
+
cron: null
|
|
423
|
+
agent_teams: aiwg-mc
|
|
424
|
+
tasks: aiwg-mc
|
|
425
|
+
mcp: native
|
|
426
|
+
behaviors: native
|
|
427
|
+
mission_control: aiwg-mc
|
|
428
|
+
daemon: null
|
|
429
|
+
hook_wiring:
|
|
430
|
+
at_link_support: false
|
|
431
|
+
context_file: "~/.openclaw/config.yaml"
|
|
432
|
+
deploy_target: home
|
|
433
|
+
aggregated_output: false
|
|
434
|
+
|
|
435
|
+
openhuman:
|
|
436
|
+
display_name: OpenHuman
|
|
437
|
+
status: experimental
|
|
438
|
+
# tinyhumansai/openhuman — OSS personal-AI runtime (Rust core + Tauri shell).
|
|
439
|
+
# AIWG-convention-aware out of the box (.agents/, AGENTS.md, .claude/, .codex/).
|
|
440
|
+
# Bidirectional: OpenHuman can also DRIVE claude_code/factory as inference
|
|
441
|
+
# backends. Induction epic #1552; agent decision adr-openhuman-agent-target.
|
|
442
|
+
daemon_tier: unsupported
|
|
443
|
+
daemon_pty_adapter: false
|
|
444
|
+
artifact_paths:
|
|
445
|
+
agents: ".agents/agents/" # markdown personas (workspace-scoped — the coding hosts OpenHuman drives); harness TOML is Tier-2 (#1559)
|
|
446
|
+
commands: "AGENTS.md bridge (no native command surface)"
|
|
447
|
+
skills: "~/.openhuman/skills/" # global/home-dir like OpenClaw — ungated user-scope native scan (ops_discover.rs); same root OpenHuman's own installer writes to (#1553)
|
|
448
|
+
skills_cross_agent: "~/.openhuman/.aiwg/skills/"
|
|
449
|
+
rules: "AGENTS.md ### Rule sections + aiwg show rule"
|
|
450
|
+
behaviors: "(not supported)"
|
|
451
|
+
native_features:
|
|
452
|
+
cron: false
|
|
453
|
+
agent_teams: false
|
|
454
|
+
tasks: false
|
|
455
|
+
mcp: false
|
|
456
|
+
behaviors: false
|
|
457
|
+
mission_control: false
|
|
458
|
+
daemon: false
|
|
459
|
+
emulation:
|
|
460
|
+
cron: null
|
|
461
|
+
agent_teams: aiwg-mc
|
|
462
|
+
tasks: aiwg-mc
|
|
463
|
+
mcp: null
|
|
464
|
+
behaviors: aiwg-mc
|
|
465
|
+
mission_control: aiwg-mc
|
|
466
|
+
daemon: null
|
|
467
|
+
hook_wiring:
|
|
468
|
+
at_link_support: false
|
|
469
|
+
context_file: AGENTS.md
|
|
470
|
+
deploy_target: mixed
|
|
471
|
+
aggregated_output: true
|
|
472
|
+
|
|
473
|
+
# Feature definitions — documents what each feature key means and
|
|
474
|
+
# what emulation strategies are available when native support is absent.
|
|
475
|
+
features:
|
|
476
|
+
cron:
|
|
477
|
+
description: Scheduled task execution (recurring triggers)
|
|
478
|
+
native_example: Claude Code CronCreate/CronList/CronDelete tools
|
|
479
|
+
emulation_strategies:
|
|
480
|
+
external-trigger: System cron, systemd timers, or CI own time and launch a reviewed provider command
|
|
481
|
+
agent_teams:
|
|
482
|
+
description: Multi-agent orchestration with team coordination
|
|
483
|
+
native_example: Claude Code native agent teams
|
|
484
|
+
emulation_strategies:
|
|
485
|
+
aiwg-mc: AIWG Mission Control background orchestration
|
|
486
|
+
tasks:
|
|
487
|
+
description: Spawn focused sub-tasks or sub-agents
|
|
488
|
+
native_example: Claude Code Task tool
|
|
489
|
+
emulation_strategies:
|
|
490
|
+
aiwg-mc: AIWG Mission Control dispatch
|
|
491
|
+
mcp:
|
|
492
|
+
description: Model Context Protocol server integration
|
|
493
|
+
native_example: Claude Code MCP tool access
|
|
494
|
+
emulation_strategies: {}
|
|
495
|
+
behaviors:
|
|
496
|
+
description: Reactive capabilities triggered by events (hooks/scripts)
|
|
497
|
+
native_example: OpenClaw behavior directories with BEHAVIOR.md + scripts/
|
|
498
|
+
emulation_strategies:
|
|
499
|
+
hooks: Pre/post-tool hooks as behavior emulation
|
|
500
|
+
aiwg-mc: Background monitoring via Mission Control
|
|
501
|
+
mission_control:
|
|
502
|
+
description: Background multi-task orchestration with monitoring
|
|
503
|
+
native_example: null
|
|
504
|
+
emulation_strategies:
|
|
505
|
+
aiwg-mc: AIWG mc start/dispatch/status/watch CLI
|
|
506
|
+
daemon:
|
|
507
|
+
description: >
|
|
508
|
+
Resident AIWG daemon lifecycle. The current production CLI does not expose
|
|
509
|
+
a daemon command; bundled daemon sources are non-routable development artifacts.
|
|
510
|
+
native_example: null
|
|
511
|
+
emulation_strategies: {}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../schemas/models/provider-model-capabilities.v1.schema.json",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"verifiedAt": "2026-07-20",
|
|
5
|
+
"providers": {
|
|
6
|
+
"claude": {
|
|
7
|
+
"agent": "native", "skill": "native", "globalChild": "inherited",
|
|
8
|
+
"identifierSyntax": "Claude alias or accepted Anthropic model ID",
|
|
9
|
+
"effortValues": ["low", "medium", "high"],
|
|
10
|
+
"inheritance": "Omitted agent or skill fields inherit the invoking session",
|
|
11
|
+
"invalidPinFallback": "Provider validation/error; never assume fallback",
|
|
12
|
+
"configTarget": ".claude/agents/*.md and skill SKILL.md frontmatter",
|
|
13
|
+
"artifactFormat": "YAML frontmatter plus Markdown",
|
|
14
|
+
"verification": "Inspect deployed frontmatter and bounded invocation metadata",
|
|
15
|
+
"sourceUrl": "https://code.claude.com/docs/en/sub-agents", "verifiedAt": "2026-07-20"
|
|
16
|
+
},
|
|
17
|
+
"codex": {
|
|
18
|
+
"agent": "native", "skill": "unsupported", "globalChild": "inherited",
|
|
19
|
+
"identifierSyntax": "Codex model slug accepted by config.toml",
|
|
20
|
+
"effortValues": ["minimal", "low", "medium", "high", "xhigh"],
|
|
21
|
+
"inheritance": "Omitted model and model_reasoning_effort inherit the parent session",
|
|
22
|
+
"invalidPinFallback": "Strict config or runtime validation; never assume fallback",
|
|
23
|
+
"configTarget": ".codex/agents/*.toml",
|
|
24
|
+
"artifactFormat": "Standalone TOML custom-agent configuration",
|
|
25
|
+
"verification": "Parse TOML and load in Codex custom-agent registry",
|
|
26
|
+
"sourceUrl": "https://learn.chatgpt.com/docs/agent-configuration/subagents", "verifiedAt": "2026-07-20"
|
|
27
|
+
},
|
|
28
|
+
"copilot": {
|
|
29
|
+
"agent": "native", "skill": "unsupported", "globalChild": "inherited",
|
|
30
|
+
"identifierSyntax": "Current Copilot custom-agent model identifier",
|
|
31
|
+
"inheritance": "Omitted model uses session or Auto selection",
|
|
32
|
+
"invalidPinFallback": "Plan/admin/catalog dependent; report unresolved",
|
|
33
|
+
"configTarget": ".github/agents/*.agent.md",
|
|
34
|
+
"artifactFormat": "YAML frontmatter plus Markdown",
|
|
35
|
+
"verification": "Schema fixture and entitled Copilot invocation",
|
|
36
|
+
"sourceUrl": "https://docs.github.com/en/copilot/reference/custom-agents-configuration", "verifiedAt": "2026-07-20"
|
|
37
|
+
},
|
|
38
|
+
"cursor": {
|
|
39
|
+
"agent": "native", "skill": "unsupported", "globalChild": "inherited",
|
|
40
|
+
"identifierSyntax": "Cursor-supported exact model ID",
|
|
41
|
+
"inheritance": "Omitted model inherits parent selection",
|
|
42
|
+
"invalidPinFallback": "Plan/admin fallback may apply; record observed result",
|
|
43
|
+
"configTarget": ".cursor/agents/*.md",
|
|
44
|
+
"artifactFormat": "YAML frontmatter plus Markdown",
|
|
45
|
+
"verification": "Schema fixture and entitled Cursor invocation",
|
|
46
|
+
"sourceUrl": "https://cursor.com/docs/subagents", "verifiedAt": "2026-07-20"
|
|
47
|
+
},
|
|
48
|
+
"factory": {
|
|
49
|
+
"agent": "native", "skill": "informational", "globalChild": "native",
|
|
50
|
+
"identifierSyntax": "Factory model ID or Light/Medium/Heavy complexity",
|
|
51
|
+
"effortValues": ["low", "medium", "high"],
|
|
52
|
+
"inheritance": "Droid may inherit org/session model policy",
|
|
53
|
+
"invalidPinFallback": "Organization policy may substitute; record observed result",
|
|
54
|
+
"configTarget": ".factory/droids/*.md and Factory settings",
|
|
55
|
+
"artifactFormat": "YAML frontmatter plus Markdown",
|
|
56
|
+
"verification": "Fixture validation and Factory CLI model report",
|
|
57
|
+
"sourceUrl": "https://docs.factory.ai/cli/configuration/custom-droids", "verifiedAt": "2026-07-20"
|
|
58
|
+
},
|
|
59
|
+
"opencode": {
|
|
60
|
+
"agent": "native", "skill": "unsupported", "globalChild": "inherited",
|
|
61
|
+
"identifierSyntax": "provider/model-id",
|
|
62
|
+
"inheritance": "Omitted agent model inherits global primary model",
|
|
63
|
+
"invalidPinFallback": "Installed provider catalog determines error/fallback",
|
|
64
|
+
"configTarget": ".opencode/agent/*.md",
|
|
65
|
+
"artifactFormat": "YAML frontmatter plus Markdown",
|
|
66
|
+
"verification": "Inspect artifact and OpenCode model registry",
|
|
67
|
+
"sourceUrl": "https://opencode.ai/docs/agents", "verifiedAt": "2026-07-20"
|
|
68
|
+
},
|
|
69
|
+
"warp": {
|
|
70
|
+
"agent": "global-only", "skill": "unsupported", "globalChild": "native",
|
|
71
|
+
"identifierSyntax": "Warp saved-profile or run model identifier",
|
|
72
|
+
"inheritance": "All delegated work uses run/profile selection",
|
|
73
|
+
"invalidPinFallback": "Profile availability dependent",
|
|
74
|
+
"configTarget": "Warp agent profile or run configuration",
|
|
75
|
+
"artifactFormat": "Saved profile / run control plane",
|
|
76
|
+
"verification": "Inspect active profile and run metadata",
|
|
77
|
+
"sourceUrl": "https://docs.warp.dev/agent-platform/capabilities/agent-profiles-permissions", "verifiedAt": "2026-07-20"
|
|
78
|
+
},
|
|
79
|
+
"windsurf": {
|
|
80
|
+
"agent": "unsupported", "skill": "unsupported", "globalChild": "inherited",
|
|
81
|
+
"identifierSyntax": "UI-selected provider model",
|
|
82
|
+
"inheritance": "Child behavior follows the main UI session",
|
|
83
|
+
"invalidPinFallback": "No portable custom-child selector",
|
|
84
|
+
"configTarget": "No supported portable artifact field",
|
|
85
|
+
"artifactFormat": "Informational policy only",
|
|
86
|
+
"verification": "Assert unsupported fields are omitted",
|
|
87
|
+
"sourceUrl": "https://docs.devin.ai/desktop/cascade/skills", "verifiedAt": "2026-07-20"
|
|
88
|
+
},
|
|
89
|
+
"openclaw": {
|
|
90
|
+
"agent": "native", "skill": "unsupported", "globalChild": "native",
|
|
91
|
+
"identifierSyntax": "Configured provider/model identifier",
|
|
92
|
+
"inheritance": "Per-agent or per-spawn override falls back to global subagent model",
|
|
93
|
+
"invalidPinFallback": "Provider/account fallback must be observed",
|
|
94
|
+
"configTarget": "OpenClaw subagent configuration",
|
|
95
|
+
"artifactFormat": "JSON/JSONC runtime configuration",
|
|
96
|
+
"verification": "Inspect resolved subagent metadata",
|
|
97
|
+
"sourceUrl": "https://docs.openclaw.ai/tools/subagents", "verifiedAt": "2026-07-20"
|
|
98
|
+
},
|
|
99
|
+
"hermes": {
|
|
100
|
+
"agent": "global-only", "skill": "unsupported", "globalChild": "native",
|
|
101
|
+
"identifierSyntax": "Hermes delegation provider and model",
|
|
102
|
+
"inheritance": "All delegated workers share one configured model",
|
|
103
|
+
"invalidPinFallback": "Provider resolution is global; report actual model",
|
|
104
|
+
"configTarget": "Hermes delegation configuration",
|
|
105
|
+
"artifactFormat": "Global CLI/config setting",
|
|
106
|
+
"verification": "Inspect Hermes delegation configuration",
|
|
107
|
+
"sourceUrl": "https://hermes-agent.nousresearch.com/docs/user-guide/features/delegation", "verifiedAt": "2026-07-20"
|
|
108
|
+
},
|
|
109
|
+
"openhuman": {
|
|
110
|
+
"agent": "compiled", "skill": "unsupported", "globalChild": "inherited",
|
|
111
|
+
"identifierSyntax": "Inherit, Exact(model), or semantic Hint",
|
|
112
|
+
"inheritance": "Inherit delegates selection to router/provider defaults",
|
|
113
|
+
"invalidPinFallback": "Exact pins validate; semantic hints route dynamically",
|
|
114
|
+
"configTarget": "OpenHuman agent TOML",
|
|
115
|
+
"artifactFormat": "Standalone TOML agent definition",
|
|
116
|
+
"verification": "Parse against OpenHuman definition schema",
|
|
117
|
+
"sourceUrl": "https://github.com/tinyhumansai/openhuman/blob/main/src/openhuman/agent/harness/definition.rs", "verifiedAt": "2026-07-20"
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|