@ghl-ai/aw 0.1.62-beta.2 → 0.1.63
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/commands/push.mjs +12 -3
- package/constants.mjs +20 -0
- package/integrate.mjs +2 -18
- package/package.json +1 -1
package/commands/push.mjs
CHANGED
|
@@ -39,7 +39,7 @@ import {
|
|
|
39
39
|
AW_DOCS_TEAMOFONE_ORIGIN,
|
|
40
40
|
AW_DOCS_TEAMOFONE_BASE_URL,
|
|
41
41
|
AW_CO_AUTHOR,
|
|
42
|
-
|
|
42
|
+
defaultAwDocsConfig,
|
|
43
43
|
} from '../constants.mjs';
|
|
44
44
|
import { resolveInput } from '../paths.mjs';
|
|
45
45
|
import { walkRegistryTree, getAllFiles } from '../registry.mjs';
|
|
@@ -246,16 +246,25 @@ function writeAwDocsConfigIfChanged(projectRoot, config) {
|
|
|
246
246
|
|
|
247
247
|
function ensureAwDocsPublishConfig(projectRoot) {
|
|
248
248
|
const config = readAwDocsConfig(projectRoot);
|
|
249
|
-
const
|
|
249
|
+
const defaultConfig = defaultAwDocsConfig();
|
|
250
250
|
const next = {
|
|
251
251
|
...config,
|
|
252
|
+
docs: {
|
|
253
|
+
...defaultConfig.docs,
|
|
254
|
+
...(config.docs || {}),
|
|
255
|
+
},
|
|
252
256
|
sync: {
|
|
257
|
+
...defaultConfig.sync,
|
|
253
258
|
...(config.sync || {}),
|
|
254
259
|
github_docs: {
|
|
255
|
-
...
|
|
260
|
+
...defaultConfig.sync.github_docs,
|
|
256
261
|
...(config.sync?.github_docs || {}),
|
|
257
262
|
},
|
|
258
263
|
},
|
|
264
|
+
paths: {
|
|
265
|
+
...defaultConfig.paths,
|
|
266
|
+
...(config.paths || {}),
|
|
267
|
+
},
|
|
259
268
|
};
|
|
260
269
|
|
|
261
270
|
writeAwDocsConfigIfChanged(projectRoot, next);
|
package/constants.mjs
CHANGED
|
@@ -45,6 +45,26 @@ export function defaultAwDocsGithubDocsConfig() {
|
|
|
45
45
|
};
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
export function defaultAwDocsConfig() {
|
|
49
|
+
return {
|
|
50
|
+
docs: {
|
|
51
|
+
outputMode: 'dual',
|
|
52
|
+
},
|
|
53
|
+
sync: {
|
|
54
|
+
eager: true,
|
|
55
|
+
batch_threshold: 10,
|
|
56
|
+
mcp_memory_enabled: true,
|
|
57
|
+
github_docs: defaultAwDocsGithubDocsConfig(),
|
|
58
|
+
},
|
|
59
|
+
paths: {
|
|
60
|
+
runs: `${AW_DOCS_DIR}/runs`,
|
|
61
|
+
learnings: `${AW_DOCS_DIR}/learnings`,
|
|
62
|
+
tasks: `${AW_DOCS_DIR}/tasks`,
|
|
63
|
+
cache: `${AW_DOCS_DIR}/cache`,
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
48
68
|
/** Persistent git clone root — ~/.aw/ */
|
|
49
69
|
export const AW_HOME = join(homedir(), '.aw');
|
|
50
70
|
|
package/integrate.mjs
CHANGED
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
import { isDefaultRoutingEnabled } from './startup.mjs';
|
|
16
16
|
import {
|
|
17
17
|
AW_DOCS_DIR,
|
|
18
|
-
|
|
18
|
+
defaultAwDocsConfig,
|
|
19
19
|
} from './constants.mjs';
|
|
20
20
|
|
|
21
21
|
const AW_ROUTER_BRIDGE_HEADER = 'AW Router Bridge';
|
|
@@ -648,23 +648,7 @@ No active runs. Use \`/aw:<team>-<command>\` to start a workflow.
|
|
|
648
648
|
|
|
649
649
|
// config.json — registry paths, sync settings
|
|
650
650
|
const configPath = join(awDocsDir, 'config.json');
|
|
651
|
-
const defaultConfig =
|
|
652
|
-
docs: {
|
|
653
|
-
outputMode: 'dual',
|
|
654
|
-
},
|
|
655
|
-
sync: {
|
|
656
|
-
eager: true,
|
|
657
|
-
batch_threshold: 10,
|
|
658
|
-
mcp_memory_enabled: true,
|
|
659
|
-
github_docs: defaultAwDocsGithubDocsConfig(),
|
|
660
|
-
},
|
|
661
|
-
paths: {
|
|
662
|
-
runs: `${AW_DOCS_DIR}/runs`,
|
|
663
|
-
learnings: `${AW_DOCS_DIR}/learnings`,
|
|
664
|
-
tasks: `${AW_DOCS_DIR}/tasks`,
|
|
665
|
-
cache: `${AW_DOCS_DIR}/cache`,
|
|
666
|
-
},
|
|
667
|
-
};
|
|
651
|
+
const defaultConfig = defaultAwDocsConfig();
|
|
668
652
|
let nextConfig = defaultConfig;
|
|
669
653
|
if (existsSync(configPath)) {
|
|
670
654
|
try {
|