aiwg 2026.6.13 → 2026.7.0
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/agentic/code/addons/aiwg-utils/rules/native-ux-tools.md +45 -2
- package/agentic/code/providers/capability-matrix.yaml +20 -0
- package/dist/src/mcp/elicitation.mjs +149 -0
- package/dist/src/mcp/server.mjs +7 -0
- package/dist/src/mcp/tools/interaction.mjs +87 -0
- package/dist/src/providers/capability-matrix.d.ts +27 -0
- package/dist/src/providers/capability-matrix.d.ts.map +1 -1
- package/dist/src/providers/capability-matrix.js.map +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ enforcement: high
|
|
|
6
6
|
|
|
7
7
|
**Enforcement Level**: HIGH
|
|
8
8
|
**Scope**: All agents and commands with interactive modes
|
|
9
|
-
**Issue**: #448
|
|
9
|
+
**Issue**: #448; #1668 (Codex mechanism + mode-gating)
|
|
10
10
|
|
|
11
11
|
## Overview
|
|
12
12
|
|
|
@@ -29,7 +29,7 @@ When asking the user an interactive question, agents MUST prefer platform-native
|
|
|
29
29
|
| Cursor | None confirmed | Check `.cursor/` config | Markdown text output |
|
|
30
30
|
| GitHub Copilot | None confirmed | Check `.github/copilot/` | Markdown text output |
|
|
31
31
|
| OpenCode | None confirmed | Check `.opencode/` config | Markdown text output |
|
|
32
|
-
| Codex (OpenAI) | `
|
|
32
|
+
| Codex (OpenAI) | `request_user_input` (mode-gated, usually off) · MCP elicitation (stable) | `codex features list`; check tool surface | Markdown text output — see Codex note below |
|
|
33
33
|
| Windsurf | None confirmed | Check AGENTS.md context | Markdown text output |
|
|
34
34
|
|
|
35
35
|
## Detection Pattern
|
|
@@ -41,6 +41,49 @@ Before asking a question:
|
|
|
41
41
|
3. If no → output as formatted markdown text
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
+
## Codex (OpenAI) — Two Mechanisms, Mostly Mode-Gated
|
|
45
|
+
|
|
46
|
+
Codex does **not** expose a single `AskUserQuestion`-style tool the way Claude Code
|
|
47
|
+
does. It has two distinct structured-question paths with very different availability
|
|
48
|
+
(verified against `codex features list`, codex-cli 0.142.x):
|
|
49
|
+
|
|
50
|
+
| Mechanism | Initiator | Feature flag | Default state | Effect |
|
|
51
|
+
|-----------|-----------|--------------|---------------|--------|
|
|
52
|
+
| `request_user_input` | the agent | `default_mode_request_user_input` | **off** (`under development`) | In Default mode the agent has **no** interactive-question tool in its surface |
|
|
53
|
+
| MCP elicitation (single/multi-select enum forms) | an MCP server/tool | `tool_call_mcp_elicitation` | **on** (`stable`) | A tool the agent calls can return an elicitation request; Codex renders a native form |
|
|
54
|
+
|
|
55
|
+
**This is the root cause of "Codex isn't using interactive questions"** (#1668): in a
|
|
56
|
+
normal Default-mode session the agent-initiated tool simply is not available, so it
|
|
57
|
+
correctly falls back to plain text. No AIWG instruction can make Codex call a tool
|
|
58
|
+
that is not in its surface. The agent-initiated path appears only in specific
|
|
59
|
+
modes/builds or when an operator enables the experimental flag
|
|
60
|
+
(`codex --enable default_mode_request_user_input`, or
|
|
61
|
+
`features.default_mode_request_user_input = true` in `~/.codex/config.toml`).
|
|
62
|
+
|
|
63
|
+
### Decision guidance for Codex agents
|
|
64
|
+
|
|
65
|
+
1. **If `request_user_input` is actually in your tool surface** (some modes/builds, or
|
|
66
|
+
operator-enabled) → use it for a short, high-value clarification.
|
|
67
|
+
2. **If you reach the user through an MCP tool that supports elicitation** → prefer a
|
|
68
|
+
single/multi-select elicitation form over free text.
|
|
69
|
+
3. **Otherwise (the common Default-mode case)** → ask **one** clearly-formatted
|
|
70
|
+
markdown question with explicit options (per the Fallback example below). Do **not**
|
|
71
|
+
silently proceed on an assumption when a one-line clarification would materially
|
|
72
|
+
change the outcome — a well-formatted text question is the correct fallback, not
|
|
73
|
+
guessing.
|
|
74
|
+
4. **Proceed with best judgment only** when the choice is low-stakes, reversible, and a
|
|
75
|
+
sensible default exists — then state the assumption you made.
|
|
76
|
+
|
|
77
|
+
Operators who want richer guided setup/triage UX in Codex today should rely on
|
|
78
|
+
**MCP elicitation** (stable) via an AIWG MCP tool, not the agent-initiated tool.
|
|
79
|
+
|
|
80
|
+
**AIWG provides this path:** when the AIWG MCP server is connected, call the
|
|
81
|
+
**`ask-user`** tool with a `question` + `options` (and `multiSelect`). On Codex it
|
|
82
|
+
emits a native single/multi-select elicitation form and returns the choice; on
|
|
83
|
+
clients without elicitation it returns a markdown prompt for you to present. This
|
|
84
|
+
lets a Codex agent ask structured questions even though its own
|
|
85
|
+
`request_user_input` tool is unavailable in Default mode (#1676).
|
|
86
|
+
|
|
44
87
|
## Examples
|
|
45
88
|
|
|
46
89
|
### Correct (Claude Code — native tool available)
|
|
@@ -45,6 +45,12 @@ providers:
|
|
|
45
45
|
hook_file: AIWG.md
|
|
46
46
|
hook_directive: "@AIWG.md"
|
|
47
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.
|
|
48
54
|
deploy_target: project
|
|
49
55
|
aggregated_output: false
|
|
50
56
|
agent_capabilities:
|
|
@@ -108,6 +114,20 @@ providers:
|
|
|
108
114
|
hook_file: AIWG-codex.md
|
|
109
115
|
fallback: full-inject
|
|
110
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.
|
|
111
131
|
deploy_target: mixed
|
|
112
132
|
aggregated_output: true
|
|
113
133
|
agent_capabilities:
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MCP elicitation helpers.
|
|
3
|
+
*
|
|
4
|
+
* Emit structured single/multi-select forms when the connected client supports
|
|
5
|
+
* MCP form elicitation, with a graceful markdown fallback otherwise. This is the
|
|
6
|
+
* stable path for agent-initiated structured questions on Codex, whose native
|
|
7
|
+
* `request_user_input` tool is mode-gated and off by default (see #1668, #1676
|
|
8
|
+
* and the native-ux-tools rule).
|
|
9
|
+
*
|
|
10
|
+
* @implements #1676
|
|
11
|
+
* @see agentic/code/addons/aiwg-utils/rules/native-ux-tools.md
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Normalize loosely-typed options into `{ value, label }` pairs.
|
|
16
|
+
* Accepts plain strings or `{ label, value? }` objects.
|
|
17
|
+
* @param {Array<string | { value?: string, label: string }>} options
|
|
18
|
+
* @returns {Array<{ value: string, label: string }>}
|
|
19
|
+
*/
|
|
20
|
+
export function normalizeOptions(options) {
|
|
21
|
+
return (options || []).map((o, i) => {
|
|
22
|
+
if (typeof o === 'string') return { value: o, label: o };
|
|
23
|
+
const label = o.label ?? o.value ?? String(i);
|
|
24
|
+
const value = o.value ?? o.label ?? String(i);
|
|
25
|
+
return { value, label };
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* True when the connected client advertises MCP form elicitation support.
|
|
31
|
+
* @param {{ server?: { getClientCapabilities?: () => any } }} mcpServer
|
|
32
|
+
* @returns {boolean}
|
|
33
|
+
*/
|
|
34
|
+
export function clientSupportsFormElicitation(mcpServer) {
|
|
35
|
+
try {
|
|
36
|
+
const caps = mcpServer?.server?.getClientCapabilities?.();
|
|
37
|
+
return Boolean(caps?.elicitation?.form);
|
|
38
|
+
} catch {
|
|
39
|
+
return false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Build a restricted JSON-schema (MCP elicitation `requestedSchema`) for a
|
|
45
|
+
* single- or multi-select choice over the given options.
|
|
46
|
+
* @param {object} params
|
|
47
|
+
* @returns {{ requestedSchema: object, key: string, options: Array<{value:string,label:string}> }}
|
|
48
|
+
*/
|
|
49
|
+
export function buildChoiceSchema({
|
|
50
|
+
key = 'choice',
|
|
51
|
+
title,
|
|
52
|
+
description,
|
|
53
|
+
options,
|
|
54
|
+
multiSelect = false,
|
|
55
|
+
minItems,
|
|
56
|
+
maxItems,
|
|
57
|
+
}) {
|
|
58
|
+
const opts = normalizeOptions(options);
|
|
59
|
+
let prop;
|
|
60
|
+
if (multiSelect) {
|
|
61
|
+
prop = {
|
|
62
|
+
type: 'array',
|
|
63
|
+
...(title ? { title } : {}),
|
|
64
|
+
...(description ? { description } : {}),
|
|
65
|
+
items: { anyOf: opts.map((o) => ({ const: o.value, title: o.label })) },
|
|
66
|
+
...(minItems != null ? { minItems } : {}),
|
|
67
|
+
...(maxItems != null ? { maxItems } : {}),
|
|
68
|
+
};
|
|
69
|
+
} else {
|
|
70
|
+
prop = {
|
|
71
|
+
type: 'string',
|
|
72
|
+
...(title ? { title } : {}),
|
|
73
|
+
...(description ? { description } : {}),
|
|
74
|
+
oneOf: opts.map((o) => ({ const: o.value, title: o.label })),
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
return {
|
|
78
|
+
requestedSchema: {
|
|
79
|
+
type: 'object',
|
|
80
|
+
properties: { [key]: prop },
|
|
81
|
+
required: [key],
|
|
82
|
+
},
|
|
83
|
+
key,
|
|
84
|
+
options: opts,
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Ask the user a single- or multi-select question via MCP elicitation.
|
|
90
|
+
*
|
|
91
|
+
* Returns `{ supported: false }` when the client has no form-elicitation support
|
|
92
|
+
* (caller should fall back to a markdown prompt). When supported, returns the
|
|
93
|
+
* outcome with `action` of `accept` (plus `value`), `decline`, or `cancel`.
|
|
94
|
+
* Never throws — any transport/capability error degrades to `{ supported: false }`.
|
|
95
|
+
*
|
|
96
|
+
* @param {{ server: { elicitInput: Function, getClientCapabilities?: Function } }} mcpServer
|
|
97
|
+
* @param {object} params
|
|
98
|
+
* @returns {Promise<{ supported: boolean, action?: string, value?: any, options: Array<{value:string,label:string}> }>}
|
|
99
|
+
*/
|
|
100
|
+
export async function elicitChoice(
|
|
101
|
+
mcpServer,
|
|
102
|
+
{ question, options, multiSelect = false, key = 'choice', title, description, minItems, maxItems },
|
|
103
|
+
) {
|
|
104
|
+
const { requestedSchema, options: opts } = buildChoiceSchema({
|
|
105
|
+
key,
|
|
106
|
+
title: title ?? question,
|
|
107
|
+
description,
|
|
108
|
+
options,
|
|
109
|
+
multiSelect,
|
|
110
|
+
minItems,
|
|
111
|
+
maxItems,
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
if (!clientSupportsFormElicitation(mcpServer)) {
|
|
115
|
+
return { supported: false, options: opts };
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
try {
|
|
119
|
+
const result = await mcpServer.server.elicitInput({
|
|
120
|
+
message: question,
|
|
121
|
+
requestedSchema,
|
|
122
|
+
mode: 'form',
|
|
123
|
+
});
|
|
124
|
+
const action = result?.action;
|
|
125
|
+
if (action === 'accept') {
|
|
126
|
+
return { supported: true, action, value: result?.content?.[key], options: opts };
|
|
127
|
+
}
|
|
128
|
+
return { supported: true, action: action === 'decline' ? 'decline' : 'cancel', options: opts };
|
|
129
|
+
} catch {
|
|
130
|
+
// Capability mismatch or transport error — degrade to markdown fallback.
|
|
131
|
+
return { supported: false, options: opts };
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Render a clear markdown prompt for clients without native elicitation.
|
|
137
|
+
* @param {object} params
|
|
138
|
+
* @returns {string}
|
|
139
|
+
*/
|
|
140
|
+
export function renderMarkdownPrompt({ question, options, multiSelect = false }) {
|
|
141
|
+
const opts = normalizeOptions(options);
|
|
142
|
+
const lines = [`**${question}**`, ''];
|
|
143
|
+
for (const o of opts) {
|
|
144
|
+
lines.push(o.label === o.value ? `- \`${o.value}\`` : `- ${o.label} (\`${o.value}\`)`);
|
|
145
|
+
}
|
|
146
|
+
lines.push('');
|
|
147
|
+
lines.push(multiSelect ? '_Select one or more and reply with your choices._' : '_Reply with your choice._');
|
|
148
|
+
return lines.join('\n');
|
|
149
|
+
}
|
package/dist/src/mcp/server.mjs
CHANGED
|
@@ -20,6 +20,7 @@ import path from 'path';
|
|
|
20
20
|
import { fileURLToPath } from 'url';
|
|
21
21
|
import { registerDiscoveryTools } from './tools/discovery.mjs';
|
|
22
22
|
import { registerCommandRunTool } from './tools/command-run.mjs';
|
|
23
|
+
import { registerInteractionTools } from './tools/interaction.mjs';
|
|
23
24
|
import { parseToolsets, registerOptInToolsets, KNOWN_TOOLSETS } from './tools/subsystems.mjs';
|
|
24
25
|
import { AIWG_ROOT } from './helpers.mjs';
|
|
25
26
|
|
|
@@ -82,6 +83,12 @@ export function createServer() {
|
|
|
82
83
|
// ============================================
|
|
83
84
|
registerCommandRunTool(server);
|
|
84
85
|
|
|
86
|
+
// ============================================
|
|
87
|
+
// Interaction toolset (#1676) — registers:
|
|
88
|
+
// ask-user (structured question via MCP elicitation, markdown fallback)
|
|
89
|
+
// ============================================
|
|
90
|
+
registerInteractionTools(server);
|
|
91
|
+
|
|
85
92
|
// ============================================
|
|
86
93
|
// Opt-in subsystem toolsets (#1322-#1332)
|
|
87
94
|
//
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Interaction tools — structured questions via MCP elicitation.
|
|
3
|
+
*
|
|
4
|
+
* Registers `ask-user`: a tool the agent can call to ask the operator a
|
|
5
|
+
* single/multi-select question. On clients that support MCP form elicitation
|
|
6
|
+
* (e.g. Codex, whose `tool_call_mcp_elicitation` is stable) this renders a
|
|
7
|
+
* native selection form and returns the choice; on other clients it returns a
|
|
8
|
+
* formatted markdown prompt for the agent to present. This restores
|
|
9
|
+
* agent-initiated structured questions on Codex, whose native
|
|
10
|
+
* `request_user_input` tool is mode-gated and off by default (#1668).
|
|
11
|
+
*
|
|
12
|
+
* @implements #1676
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { z } from 'zod';
|
|
16
|
+
import { elicitChoice, renderMarkdownPrompt } from '../elicitation.mjs';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Register interaction tools on the MCP server.
|
|
20
|
+
* @param {import('@modelcontextprotocol/sdk/server/mcp.js').McpServer} server
|
|
21
|
+
*/
|
|
22
|
+
export function registerInteractionTools(server) {
|
|
23
|
+
server.registerTool(
|
|
24
|
+
'ask-user',
|
|
25
|
+
{
|
|
26
|
+
title: 'Ask the user a structured question',
|
|
27
|
+
description:
|
|
28
|
+
'Ask the operator a single- or multi-select question. On clients that support MCP ' +
|
|
29
|
+
'elicitation (e.g. Codex) this renders a native selection form and returns the choice; ' +
|
|
30
|
+
'on other clients it returns a formatted markdown prompt for you to present to the user. ' +
|
|
31
|
+
'Use for short clarifications that materially change the outcome — not for low-stakes ' +
|
|
32
|
+
'choices with a sensible default.',
|
|
33
|
+
inputSchema: {
|
|
34
|
+
question: z.string().describe('The question to ask the user.'),
|
|
35
|
+
options: z
|
|
36
|
+
.array(
|
|
37
|
+
z.union([
|
|
38
|
+
z.string(),
|
|
39
|
+
z.object({
|
|
40
|
+
value: z.string().optional().describe('Machine value returned on selection.'),
|
|
41
|
+
label: z.string().describe('Human-readable label.'),
|
|
42
|
+
}),
|
|
43
|
+
]),
|
|
44
|
+
)
|
|
45
|
+
.min(2)
|
|
46
|
+
.describe('Two or more options. Plain strings, or { label, value } objects.'),
|
|
47
|
+
multiSelect: z.boolean().optional().describe('Allow selecting multiple options (default false).'),
|
|
48
|
+
context: z.string().optional().describe('Optional context shown above the question.'),
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
async ({ question, options, multiSelect = false, context }) => {
|
|
52
|
+
const message = context ? `${context}\n\n${question}` : question;
|
|
53
|
+
const res = await elicitChoice(server, { question: message, options, multiSelect });
|
|
54
|
+
|
|
55
|
+
if (res.supported && res.action === 'accept') {
|
|
56
|
+
const val = Array.isArray(res.value) ? res.value.join(', ') : res.value;
|
|
57
|
+
return {
|
|
58
|
+
content: [{ type: 'text', text: `User selected: ${val ?? '(empty selection)'}` }],
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
if (res.supported && (res.action === 'decline' || res.action === 'cancel')) {
|
|
63
|
+
return {
|
|
64
|
+
content: [
|
|
65
|
+
{
|
|
66
|
+
type: 'text',
|
|
67
|
+
text: `User ${res.action}d the question without selecting. Do not assume an answer — ask how to proceed.`,
|
|
68
|
+
},
|
|
69
|
+
],
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// Fallback: client has no native question UI — instruct the agent to ask in markdown.
|
|
74
|
+
const prompt = renderMarkdownPrompt({ question, options, multiSelect });
|
|
75
|
+
return {
|
|
76
|
+
content: [
|
|
77
|
+
{
|
|
78
|
+
type: 'text',
|
|
79
|
+
text:
|
|
80
|
+
'This client has no native question UI. Present the following to the user verbatim ' +
|
|
81
|
+
`and proceed with their reply:\n\n${prompt}`,
|
|
82
|
+
},
|
|
83
|
+
],
|
|
84
|
+
};
|
|
85
|
+
},
|
|
86
|
+
);
|
|
87
|
+
}
|
|
@@ -52,6 +52,33 @@ export interface ProviderCapabilities {
|
|
|
52
52
|
deploy_target: DeployTarget;
|
|
53
53
|
aggregated_output: boolean;
|
|
54
54
|
agent_capabilities?: Record<string, AgentCapabilities>;
|
|
55
|
+
/** Native interactive-question (UX) support. Absent => unknown / markdown fallback. @issue #1668 */
|
|
56
|
+
interaction?: InteractionCapabilities;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Describes how a provider supports structured interactive questions
|
|
60
|
+
* (e.g. Claude Code's AskUserQuestion, Codex's request_user_input / MCP elicitation).
|
|
61
|
+
* Consumed by the native-ux-tools rule and steward routing. @issue #1668
|
|
62
|
+
*/
|
|
63
|
+
export interface InteractionCapabilities {
|
|
64
|
+
/**
|
|
65
|
+
* - `native` — agent may call a structured-question tool directly
|
|
66
|
+
* - `mode_gated` — tool exists but is gated by mode/feature flag (often off by default)
|
|
67
|
+
* - `mcp_only` — structured questions reach the user only via MCP elicitation
|
|
68
|
+
* - `none` — no native mechanism; markdown fallback
|
|
69
|
+
*/
|
|
70
|
+
structured_questions: 'native' | 'mode_gated' | 'mcp_only' | 'none';
|
|
71
|
+
/** Name of the agent-facing tool, when one exists. */
|
|
72
|
+
tool?: string;
|
|
73
|
+
/** Feature flag gating the tool, when mode_gated. */
|
|
74
|
+
feature_flag?: string;
|
|
75
|
+
/** Whether the agent-facing tool is available by default. */
|
|
76
|
+
default_available?: boolean;
|
|
77
|
+
/** MCP elicitation support level, when applicable. */
|
|
78
|
+
mcp_elicitation?: 'stable' | 'experimental' | 'none';
|
|
79
|
+
/** Fallback mechanism when the native tool is unavailable. */
|
|
80
|
+
fallback?: string;
|
|
81
|
+
notes?: string;
|
|
55
82
|
}
|
|
56
83
|
export interface AgentCapabilities {
|
|
57
84
|
context_window?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"capability-matrix.d.ts","sourceRoot":"","sources":["../../../src/providers/capability-matrix.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAYH,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,cAAc,GAAG,YAAY,CAAC;AAEtE,MAAM,MAAM,UAAU,GAClB,MAAM,GACN,aAAa,GACb,OAAO,GACP,KAAK,GACL,WAAW,GACX,iBAAiB,GACjB,QAAQ,CAAC;AAEb;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,aAAa,GAAG,aAAa,CAAC;AAElE,MAAM,MAAM,iBAAiB,GACzB,QAAQ,GACR,OAAO,GACP,SAAS,GACT,eAAe,GACf,aAAa,GACb,IAAI,CAAC;AAET,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,MAAM,GAAG,OAAO,CAAC;AAExD,MAAM,WAAW,aAAa;IAC5B,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B;AAED,MAAM,WAAW,UAAU;IACzB,eAAe,EAAE,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,oBAAoB;IACnC,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,MAAM,EAAE,cAAc,CAAC;IACvB,+CAA+C;IAC/C,WAAW,EAAE,UAAU,CAAC;IACxB,0FAA0F;IAC1F,kBAAkB,EAAE,OAAO,CAAC;IAC5B,cAAc,EAAE,aAAa,CAAC;IAC9B,eAAe,EAAE,MAAM,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;IAC7C,SAAS,EAAE,MAAM,CAAC,UAAU,EAAE,iBAAiB,CAAC,CAAC;IACjD,WAAW,EAAE,UAAU,CAAC;IACxB,aAAa,EAAE,YAAY,CAAC;IAC5B,iBAAiB,EAAE,OAAO,CAAC;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"capability-matrix.d.ts","sourceRoot":"","sources":["../../../src/providers/capability-matrix.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"capability-matrix.js","sourceRoot":"","sources":["../../../src/providers/capability-matrix.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AACpC,OAAO,EAAE,IAAI,IAAI,QAAQ,EAAE,MAAM,SAAS,CAAC;AAC3C,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"capability-matrix.js","sourceRoot":"","sources":["../../../src/providers/capability-matrix.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aiwg",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.7.0",
|
|
4
4
|
"description": "Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platforms. Optional utilities for persistent artifact memory, background orchestration, autonomous loops, and artifact indexing.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|