@sechroom/cli 2026.6.15 → 2026.6.16
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1837,7 +1837,7 @@ async function resolveInstruction(cfg, section, personalWorkspaceId) {
|
|
|
1837
1837
|
const tags = parseTagArtifactId(artifact.id);
|
|
1838
1838
|
if (!tags) continue;
|
|
1839
1839
|
const { data } = await client.POST("/memories/search", {
|
|
1840
|
-
body: { query: null, textQuery: null, semanticQuery:
|
|
1840
|
+
body: { query: null, textQuery: null, semanticQuery: null, hybrid: false, limit: 1, includeArchived: false, includeSystem: false, tags }
|
|
1841
1841
|
});
|
|
1842
1842
|
const hits = data ?? [];
|
|
1843
1843
|
if (hits.length === 0) continue;
|
|
@@ -1847,7 +1847,7 @@ async function resolveInstruction(cfg, section, personalWorkspaceId) {
|
|
|
1847
1847
|
const templateTags = template.tags ?? tags;
|
|
1848
1848
|
if (personalWorkspaceId) {
|
|
1849
1849
|
const { data: ovr } = await client.POST("/memories/search", {
|
|
1850
|
-
body: { query: null, textQuery: null, semanticQuery:
|
|
1850
|
+
body: { query: null, textQuery: null, semanticQuery: null, hybrid: false, limit: 1, includeArchived: false, includeSystem: false, tags: ["sechroom:role:override", `sechroom:template-ref:${templateId}`], owner: { type: "Workspace", id: personalWorkspaceId } }
|
|
1851
1851
|
});
|
|
1852
1852
|
const ovrHits = ovr ?? [];
|
|
1853
1853
|
if (ovrHits.length > 0) {
|
package/package.json
CHANGED