agentwheel 0.20.6 → 0.20.8
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/dist/index.js
CHANGED
|
@@ -7225,7 +7225,10 @@ async function renderGraphForTarget(graph, targetContext = {}) {
|
|
|
7225
7225
|
const compositionRules = collectCompositionRules(stagedNodes);
|
|
7226
7226
|
for (const staged of [...stagedNodes.values()].sort((a, b) => a.rawNode.node.id.localeCompare(b.rawNode.node.id))) {
|
|
7227
7227
|
const rawNode = staged.rawNode;
|
|
7228
|
-
const
|
|
7228
|
+
const runtimeSelectedSet = new Set(normalizeArtifactSelectors(rawNode.node.selected) ?? []);
|
|
7229
|
+
const runtimeArtifacts = targetContext.adapter ? filterArtifactsByRuntime2(staged.artifacts, targetContext.adapter.name, runtimeSelectedSet) : staged.artifacts;
|
|
7230
|
+
const compositionArtifacts = targetContext.noDeps ? filterArtifactsBySelection(runtimeArtifacts, rawNode.node.selected) : runtimeArtifacts;
|
|
7231
|
+
const expandedArtifacts = await expandMarkdownIncludes(compositionArtifacts, staged.root, {
|
|
7229
7232
|
nodeId: rawNode.node.id,
|
|
7230
7233
|
originNodeId: rawNode.node.id,
|
|
7231
7234
|
additionalComposeEntries: (artifact) => matchingCompositionEntries(
|
|
@@ -7273,9 +7276,7 @@ async function renderGraphForTarget(graph, targetContext = {}) {
|
|
|
7273
7276
|
}
|
|
7274
7277
|
});
|
|
7275
7278
|
const selectedArtifacts = filterArtifactsBySelection(expandedArtifacts, rawNode.node.selected);
|
|
7276
|
-
const
|
|
7277
|
-
const runtimeArtifacts = targetContext.adapter ? filterArtifactsByRuntime2(selectedArtifacts, targetContext.adapter.name, runtimeSelectedSet) : selectedArtifacts;
|
|
7278
|
-
const claudeRenderedArtifacts = await renderClaudeSubagents(runtimeArtifacts, staged.root, targetContext.adapter);
|
|
7279
|
+
const claudeRenderedArtifacts = await renderClaudeSubagents(selectedArtifacts, staged.root, targetContext.adapter);
|
|
7279
7280
|
const codexRenderedArtifacts = await renderCodexSubagents(claudeRenderedArtifacts, staged.root, targetContext.adapter);
|
|
7280
7281
|
const openClawRenderedArtifacts = await renderOpenClawSubagents(codexRenderedArtifacts, staged.root, targetContext.adapter);
|
|
7281
7282
|
const runtimeRenderedArtifacts = await renderCopilotArtifacts(openClawRenderedArtifacts, staged.root, targetContext.adapter);
|
|
@@ -8093,6 +8094,7 @@ async function createGraphSourcePlan(options) {
|
|
|
8093
8094
|
adapter: options.adapter,
|
|
8094
8095
|
installationType,
|
|
8095
8096
|
targetFingerprint,
|
|
8097
|
+
noDeps: options.noDeps,
|
|
8096
8098
|
warn
|
|
8097
8099
|
});
|
|
8098
8100
|
const desiredArtifacts = filterArtifactsByAdapterTargets(
|
package/openpack.json
CHANGED
package/package.json
CHANGED