@karmaniverous/jeeves-meta 0.16.2 → 0.17.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/README.md +1 -1
- package/dist/cli/jeeves-meta/index.js +177 -157
- package/dist/configHotReload.d.ts +1 -1
- package/dist/configLoader.d.ts +2 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +178 -158
- package/dist/orchestrator/parseOutput.d.ts +4 -3
- package/dist/progress/index.d.ts +39 -4
- package/dist/prompts/index.d.ts +0 -3
- package/dist/schema/config.d.ts +14 -5
- package/dist/schema/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/schema/config.d.ts
CHANGED
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
import { type MetaConfig, metaConfigSchema } from '@karmaniverous/jeeves-meta-core';
|
|
9
9
|
import { z } from 'zod';
|
|
10
10
|
export { type MetaConfig, metaConfigSchema };
|
|
11
|
+
/** Default Handlebars template strings for progress reporting. Single source of truth. */
|
|
12
|
+
export declare const DEFAULT_TEMPLATE_STRINGS: {
|
|
13
|
+
readonly phaseStart: ":gear: Started meta synthesis {{phase}} phase of <{{dirLink}}>";
|
|
14
|
+
readonly phaseEnd: ":white_check_mark: Completed meta synthesis {{phase}} phase ({{tokens}} tokens / {{seconds}}s) at <{{metaLink}}>";
|
|
15
|
+
readonly phaseError: ":x: Meta synthesis {{phase}} phase failed at <{{dirLink}}>\n Error: {{error}}";
|
|
16
|
+
};
|
|
11
17
|
/** Zod schema for a single auto-seed policy rule. */
|
|
12
18
|
declare const autoSeedRuleSchema: z.ZodObject<{
|
|
13
19
|
match: z.ZodString;
|
|
@@ -27,16 +33,19 @@ export declare const serviceConfigSchema: z.ZodObject<{
|
|
|
27
33
|
maxArchive: z.ZodDefault<z.ZodNumber>;
|
|
28
34
|
maxLines: z.ZodDefault<z.ZodNumber>;
|
|
29
35
|
thinking: z.ZodDefault<z.ZodString>;
|
|
30
|
-
defaultArchitect: z.ZodOptional<z.ZodString>;
|
|
31
|
-
defaultCritic: z.ZodOptional<z.ZodString>;
|
|
32
36
|
skipUnchanged: z.ZodDefault<z.ZodBoolean>;
|
|
33
|
-
metaProperty: z.
|
|
34
|
-
metaArchiveProperty: z.
|
|
37
|
+
metaProperty: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
38
|
+
metaArchiveProperty: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
35
39
|
port: z.ZodDefault<z.ZodNumber>;
|
|
36
40
|
schedule: z.ZodDefault<z.ZodString>;
|
|
37
41
|
reportChannel: z.ZodOptional<z.ZodString>;
|
|
38
42
|
reportTarget: z.ZodOptional<z.ZodString>;
|
|
39
|
-
|
|
43
|
+
serverUrl: z.ZodDefault<z.ZodString>;
|
|
44
|
+
templates: z.ZodDefault<z.ZodObject<{
|
|
45
|
+
phaseStart: z.ZodDefault<z.ZodString>;
|
|
46
|
+
phaseEnd: z.ZodDefault<z.ZodString>;
|
|
47
|
+
phaseError: z.ZodDefault<z.ZodString>;
|
|
48
|
+
}, z.core.$strip>>;
|
|
40
49
|
watcherHealthIntervalMs: z.ZodDefault<z.ZodNumber>;
|
|
41
50
|
logging: z.ZodDefault<z.ZodObject<{
|
|
42
51
|
level: z.ZodDefault<z.ZodString>;
|
package/dist/schema/index.d.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @module schema
|
|
5
5
|
*/
|
|
6
|
-
export { type AutoSeedRule, type MetaConfig, metaConfigSchema, type ServiceConfig, serviceConfigSchema, } from './config.js';
|
|
6
|
+
export { type AutoSeedRule, DEFAULT_TEMPLATE_STRINGS, type MetaConfig, metaConfigSchema, type ServiceConfig, serviceConfigSchema, } from './config.js';
|
|
7
7
|
export { type MetaError, metaErrorSchema } from './error.js';
|
|
8
8
|
export { type MetaJson, metaJsonSchema, type PhaseName, phaseNames, type PhaseState, phaseStateSchema, type PhaseStatus, phaseStatuses, } from './meta.js';
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@karmaniverous/jeeves": "^0.5.12",
|
|
11
|
-
"@karmaniverous/jeeves-meta-core": "^0.2.
|
|
11
|
+
"@karmaniverous/jeeves-meta-core": "^0.2.2",
|
|
12
12
|
"commander": "^14",
|
|
13
13
|
"croner": "^10",
|
|
14
14
|
"fastify": "^5.8",
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
},
|
|
111
111
|
"type": "module",
|
|
112
112
|
"types": "dist/index.d.ts",
|
|
113
|
-
"version": "0.
|
|
113
|
+
"version": "0.17.0"
|
|
114
114
|
}
|