@agentxm/workspace-lint 0.29.2 → 0.29.4
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/src/run/lint-workspace.js +6 -0
- package/package.json +10 -10
|
@@ -114,11 +114,16 @@ const runLint = (selection, options) => Effect.gen(function* () {
|
|
|
114
114
|
const skillOwnershipRoots = workspace.layout.scope === "project"
|
|
115
115
|
? [workspace.layout.acquiredRoot, workspace.layout.authoredRoot("skill")]
|
|
116
116
|
: [workspace.layout.acquiredRoot];
|
|
117
|
+
const authoredSkills = {
|
|
118
|
+
layout: workspace.layout,
|
|
119
|
+
entries: Option.isSome(settings) ? (settings.value.skills ?? {}) : {},
|
|
120
|
+
};
|
|
117
121
|
const ownership = yield* observeWorkspaceOwnershipIssues({
|
|
118
122
|
workspaceRoot: workspace.baseDir,
|
|
119
123
|
scope: workspace.scope,
|
|
120
124
|
configuredAgentIds: new Set(configuredAgents),
|
|
121
125
|
skillOwnershipRoots,
|
|
126
|
+
authoredSkills,
|
|
122
127
|
});
|
|
123
128
|
const desiredGraph = yield* workspace.getDesiredStateGraph();
|
|
124
129
|
const materializationAgentIds = new Set((yield* agentRepository.getMaterializationAgents()).map(({ id }) => id));
|
|
@@ -128,6 +133,7 @@ const runLint = (selection, options) => Effect.gen(function* () {
|
|
|
128
133
|
desiredAgentIds: materializationAgentIds,
|
|
129
134
|
expectedNames: expectedProjectionNames(desiredGraph),
|
|
130
135
|
skillOwnershipRoots,
|
|
136
|
+
authoredSkills,
|
|
131
137
|
});
|
|
132
138
|
const canonicalObservations = Effect.gen(function* () {
|
|
133
139
|
const graph = yield* workspace.getDesiredStateGraph();
|
package/package.json
CHANGED
|
@@ -4,19 +4,19 @@
|
|
|
4
4
|
"url": "https://github.com/agentxm/axm/issues"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@agentxm/agent-integration": "^0.29.
|
|
8
|
-
"@agentxm/extension-content": "^0.29.
|
|
9
|
-
"@agentxm/extension-model": "^0.29.
|
|
10
|
-
"@agentxm/extension-resolution": "^0.29.
|
|
11
|
-
"@agentxm/extension-sources": "^0.29.
|
|
12
|
-
"@agentxm/workspace-operations": "^0.29.
|
|
13
|
-
"@agentxm/workspace-projection": "^0.29.
|
|
14
|
-
"@agentxm/workspace-state": "^0.29.
|
|
7
|
+
"@agentxm/agent-integration": "^0.29.4",
|
|
8
|
+
"@agentxm/extension-content": "^0.29.4",
|
|
9
|
+
"@agentxm/extension-model": "^0.29.4",
|
|
10
|
+
"@agentxm/extension-resolution": "^0.29.4",
|
|
11
|
+
"@agentxm/extension-sources": "^0.29.4",
|
|
12
|
+
"@agentxm/workspace-operations": "^0.29.4",
|
|
13
|
+
"@agentxm/workspace-projection": "^0.29.4",
|
|
14
|
+
"@agentxm/workspace-state": "^0.29.4",
|
|
15
15
|
"effect": "4.0.0-rc.115"
|
|
16
16
|
},
|
|
17
17
|
"description": "AXM workspace-lint feature: workspace facts, lint rules, findings, normalization, and bounded fix planning for the axm CLI. Unstable and unsupported — use the axm.sh CLI.",
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@agentxm/agent-integration": "^0.29.
|
|
19
|
+
"@agentxm/agent-integration": "^0.29.4",
|
|
20
20
|
"@effect/platform-node": "4.0.0-rc.115",
|
|
21
21
|
"@effect/vitest": "4.0.0-rc.115",
|
|
22
22
|
"@types/bun": "^1.3.14",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
61
|
"type": "module",
|
|
62
|
-
"version": "0.29.
|
|
62
|
+
"version": "0.29.4"
|
|
63
63
|
}
|