create-principles-disciple 1.76.0 → 1.78.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/console/dist/server/config/feature-flags.d.ts +25 -0
- package/console/dist/server/config/feature-flags.js +101 -0
- package/console/dist/server/index.js +16 -0
- package/console/dist/server/models/FeedbackReportConsoleModel.d.ts +49 -0
- package/console/dist/server/models/FeedbackReportConsoleModel.js +242 -0
- package/console/dist/server/routes/feedback-reports.d.ts +18 -0
- package/console/dist/server/routes/feedback-reports.js +165 -0
- package/console/dist/ui/App.js +2 -1
- package/console/dist/ui/api.d.ts +26 -2
- package/console/dist/ui/api.js +18 -1
- package/console/dist/ui/components/app-sidebar.js +2 -1
- package/console/dist/ui/components/error-boundary.js +9 -2
- package/console/dist/ui/i18n/en.json +67 -1
- package/console/dist/ui/i18n/zh-CN.json +67 -1
- package/console/dist/ui/pages/ReportProblemPage.d.ts +1 -0
- package/console/dist/ui/pages/ReportProblemPage.js +186 -0
- package/console/dist/ui/pages/ReportProblemValidators.d.ts +51 -0
- package/console/dist/ui/pages/ReportProblemValidators.js +114 -0
- package/console/dist/web/assets/app.css +18 -0
- package/console/dist/web/assets/app.js +1047 -125
- package/console/package.json +1 -0
- package/core/dist/runtime-v2/__tests__/architecture-regression.test.js +24 -1
- package/core/dist/runtime-v2/__tests__/architecture-regression.test.js.map +1 -1
- package/core/dist/runtime-v2/__tests__/feedback/create-report.test.d.ts +2 -0
- package/core/dist/runtime-v2/__tests__/feedback/create-report.test.d.ts.map +1 -0
- package/core/dist/runtime-v2/__tests__/feedback/create-report.test.js +402 -0
- package/core/dist/runtime-v2/__tests__/feedback/create-report.test.js.map +1 -0
- package/core/dist/runtime-v2/__tests__/feedback/privacy-preview.test.d.ts +2 -0
- package/core/dist/runtime-v2/__tests__/feedback/privacy-preview.test.d.ts.map +1 -0
- package/core/dist/runtime-v2/__tests__/feedback/privacy-preview.test.js +128 -0
- package/core/dist/runtime-v2/__tests__/feedback/privacy-preview.test.js.map +1 -0
- package/core/dist/runtime-v2/__tests__/feedback/redact-sensitive.test.d.ts +2 -0
- package/core/dist/runtime-v2/__tests__/feedback/redact-sensitive.test.d.ts.map +1 -0
- package/core/dist/runtime-v2/__tests__/feedback/redact-sensitive.test.js +231 -0
- package/core/dist/runtime-v2/__tests__/feedback/redact-sensitive.test.js.map +1 -0
- package/core/dist/runtime-v2/__tests__/feedback/render-github-url.test.d.ts +2 -0
- package/core/dist/runtime-v2/__tests__/feedback/render-github-url.test.d.ts.map +1 -0
- package/core/dist/runtime-v2/__tests__/feedback/render-github-url.test.js +102 -0
- package/core/dist/runtime-v2/__tests__/feedback/render-github-url.test.js.map +1 -0
- package/core/dist/runtime-v2/__tests__/feedback/render-markdown.test.d.ts +2 -0
- package/core/dist/runtime-v2/__tests__/feedback/render-markdown.test.d.ts.map +1 -0
- package/core/dist/runtime-v2/__tests__/feedback/render-markdown.test.js +130 -0
- package/core/dist/runtime-v2/__tests__/feedback/render-markdown.test.js.map +1 -0
- package/core/dist/runtime-v2/__tests__/workspace-guidance-migration.test.d.ts +2 -0
- package/core/dist/runtime-v2/__tests__/workspace-guidance-migration.test.d.ts.map +1 -0
- package/core/dist/runtime-v2/__tests__/workspace-guidance-migration.test.js +328 -0
- package/core/dist/runtime-v2/__tests__/workspace-guidance-migration.test.js.map +1 -0
- package/core/dist/runtime-v2/activation/__tests__/prompt-activation-reader-contract.test.d.ts +2 -0
- package/core/dist/runtime-v2/activation/__tests__/prompt-activation-reader-contract.test.d.ts.map +1 -0
- package/core/dist/runtime-v2/activation/__tests__/prompt-activation-reader-contract.test.js +343 -0
- package/core/dist/runtime-v2/activation/__tests__/prompt-activation-reader-contract.test.js.map +1 -0
- package/core/dist/runtime-v2/activation/index.d.ts +2 -0
- package/core/dist/runtime-v2/activation/index.d.ts.map +1 -1
- package/core/dist/runtime-v2/activation/index.js +1 -0
- package/core/dist/runtime-v2/activation/index.js.map +1 -1
- package/core/dist/runtime-v2/activation/prompt-activation-reader-contract.d.ts +34 -0
- package/core/dist/runtime-v2/activation/prompt-activation-reader-contract.d.ts.map +1 -0
- package/core/dist/runtime-v2/activation/prompt-activation-reader-contract.js +109 -0
- package/core/dist/runtime-v2/activation/prompt-activation-reader-contract.js.map +1 -0
- package/core/dist/runtime-v2/feature-flags/__tests__/feature-flag-contract.test.js +13 -0
- package/core/dist/runtime-v2/feature-flags/__tests__/feature-flag-contract.test.js.map +1 -1
- package/core/dist/runtime-v2/feature-flags/__tests__/plugin-surface-registry.test.d.ts +2 -0
- package/core/dist/runtime-v2/feature-flags/__tests__/plugin-surface-registry.test.d.ts.map +1 -0
- package/core/dist/runtime-v2/feature-flags/__tests__/plugin-surface-registry.test.js +141 -0
- package/core/dist/runtime-v2/feature-flags/__tests__/plugin-surface-registry.test.js.map +1 -0
- package/core/dist/runtime-v2/feature-flags/feature-flag-contract.d.ts.map +1 -1
- package/core/dist/runtime-v2/feature-flags/feature-flag-contract.js +4 -1
- package/core/dist/runtime-v2/feature-flags/feature-flag-contract.js.map +1 -1
- package/core/dist/runtime-v2/feature-flags/index.d.ts +2 -0
- package/core/dist/runtime-v2/feature-flags/index.d.ts.map +1 -1
- package/core/dist/runtime-v2/feature-flags/index.js +1 -0
- package/core/dist/runtime-v2/feature-flags/index.js.map +1 -1
- package/core/dist/runtime-v2/feature-flags/plugin-surface-registry.d.ts +25 -0
- package/core/dist/runtime-v2/feature-flags/plugin-surface-registry.d.ts.map +1 -0
- package/core/dist/runtime-v2/feature-flags/plugin-surface-registry.js +233 -0
- package/core/dist/runtime-v2/feature-flags/plugin-surface-registry.js.map +1 -0
- package/core/dist/runtime-v2/feedback/create-report.d.ts +14 -0
- package/core/dist/runtime-v2/feedback/create-report.d.ts.map +1 -0
- package/core/dist/runtime-v2/feedback/create-report.js +257 -0
- package/core/dist/runtime-v2/feedback/create-report.js.map +1 -0
- package/core/dist/runtime-v2/feedback/feedback-types.d.ts +120 -0
- package/core/dist/runtime-v2/feedback/feedback-types.d.ts.map +1 -0
- package/core/dist/runtime-v2/feedback/feedback-types.js +243 -0
- package/core/dist/runtime-v2/feedback/feedback-types.js.map +1 -0
- package/core/dist/runtime-v2/feedback/index.d.ts +9 -0
- package/core/dist/runtime-v2/feedback/index.d.ts.map +1 -0
- package/core/dist/runtime-v2/feedback/index.js +11 -0
- package/core/dist/runtime-v2/feedback/index.js.map +1 -0
- package/core/dist/runtime-v2/feedback/internal-guards.d.ts +2 -0
- package/core/dist/runtime-v2/feedback/internal-guards.d.ts.map +1 -0
- package/core/dist/runtime-v2/feedback/internal-guards.js +6 -0
- package/core/dist/runtime-v2/feedback/internal-guards.js.map +1 -0
- package/core/dist/runtime-v2/feedback/privacy-preview.d.ts +14 -0
- package/core/dist/runtime-v2/feedback/privacy-preview.d.ts.map +1 -0
- package/core/dist/runtime-v2/feedback/privacy-preview.js +128 -0
- package/core/dist/runtime-v2/feedback/privacy-preview.js.map +1 -0
- package/core/dist/runtime-v2/feedback/redact-sensitive.d.ts +37 -0
- package/core/dist/runtime-v2/feedback/redact-sensitive.d.ts.map +1 -0
- package/core/dist/runtime-v2/feedback/redact-sensitive.js +272 -0
- package/core/dist/runtime-v2/feedback/redact-sensitive.js.map +1 -0
- package/core/dist/runtime-v2/feedback/render-github-url.d.ts +21 -0
- package/core/dist/runtime-v2/feedback/render-github-url.d.ts.map +1 -0
- package/core/dist/runtime-v2/feedback/render-github-url.js +57 -0
- package/core/dist/runtime-v2/feedback/render-github-url.js.map +1 -0
- package/core/dist/runtime-v2/feedback/render-markdown.d.ts +12 -0
- package/core/dist/runtime-v2/feedback/render-markdown.d.ts.map +1 -0
- package/core/dist/runtime-v2/feedback/render-markdown.js +166 -0
- package/core/dist/runtime-v2/feedback/render-markdown.js.map +1 -0
- package/core/dist/runtime-v2/feedback/safe-stringify.d.ts +6 -0
- package/core/dist/runtime-v2/feedback/safe-stringify.d.ts.map +1 -0
- package/core/dist/runtime-v2/feedback/safe-stringify.js +115 -0
- package/core/dist/runtime-v2/feedback/safe-stringify.js.map +1 -0
- package/core/dist/runtime-v2/index.d.ts +8 -1
- package/core/dist/runtime-v2/index.d.ts.map +1 -1
- package/core/dist/runtime-v2/index.js +12 -1
- package/core/dist/runtime-v2/index.js.map +1 -1
- package/core/dist/runtime-v2/workspace-guidance-migration.d.ts +12 -0
- package/core/dist/runtime-v2/workspace-guidance-migration.d.ts.map +1 -0
- package/core/dist/runtime-v2/workspace-guidance-migration.js +193 -0
- package/core/dist/runtime-v2/workspace-guidance-migration.js.map +1 -0
- package/core/package.json +4 -0
- package/package.json +1 -1
- package/plugin/dist/commands/context.js +5 -5
- package/plugin/dist/commands/strategy.d.ts +0 -1
- package/plugin/dist/commands/strategy.js +0 -14
- package/plugin/dist/core/runtime-v2-prompt-activation-reader.d.ts +4 -13
- package/plugin/dist/core/runtime-v2-prompt-activation-reader.js +36 -74
- package/plugin/dist/core/surface-guard.d.ts +27 -0
- package/plugin/dist/core/surface-guard.js +82 -0
- package/plugin/dist/core/workspace-guidance-migrator.d.ts +12 -0
- package/plugin/dist/core/workspace-guidance-migrator.js +141 -0
- package/plugin/dist/hooks/prompt.js +20 -143
- package/plugin/dist/i18n/commands.js +2 -14
- package/plugin/dist/index.d.ts +27 -0
- package/plugin/dist/index.js +180 -65
- package/plugin/dist/service/correction-observer-service.d.ts +11 -0
- package/plugin/dist/service/correction-observer-service.js +172 -0
- package/plugin/dist/service/evolution-worker.js +1 -110
- package/plugin/dist/types.d.ts +2 -2
- package/plugin/dist/types.js +3 -3
- package/plugin/templates/langs/en/core/BOOTSTRAP.md +5 -19
- package/plugin/templates/langs/en/principles/THINKING_OS.md +1 -1
- package/plugin/templates/langs/en/skills/admin/SKILL.md +2 -2
- package/plugin/templates/langs/en/skills/bootstrap-tools/SKILL.md +1 -1
- package/plugin/templates/langs/en/skills/init-strategy/SKILL.md +1 -1
- package/plugin/templates/langs/en/skills/pd-mentor/SKILL.md +8 -23
- package/plugin/templates/langs/en/skills/reflection/SKILL.md +2 -2
- package/plugin/templates/langs/en/skills/report/SKILL.md +1 -1
- package/plugin/templates/langs/zh/core/BOOTSTRAP.md +3 -16
- package/plugin/templates/langs/zh/principles/THINKING_OS.md +1 -1
- package/plugin/templates/langs/zh/skills/admin/SKILL.md +2 -2
- package/plugin/templates/langs/zh/skills/bootstrap-tools/SKILL.md +1 -1
- package/plugin/templates/langs/zh/skills/init-strategy/SKILL.md +1 -1
- package/plugin/templates/langs/zh/skills/pd-mentor/SKILL.md +7 -22
- package/plugin/templates/langs/zh/skills/reflection/SKILL.md +2 -2
- package/plugin/templates/langs/zh/skills/report/SKILL.md +1 -1
- package/plugin/templates/workspace/.principles/THINKING_OS.md +1 -1
- package/templates/langs/en/core/BOOTSTRAP.md +1 -1
- package/templates/langs/en/principles/THINKING_OS.md +1 -1
- package/templates/langs/en/skills/admin/SKILL.md +2 -2
- package/templates/langs/en/skills/pd-grooming/SKILL.md +1 -1
- package/templates/langs/en/skills/reflection/SKILL.md +2 -2
- package/templates/langs/en/skills/report/SKILL.md +1 -1
- package/templates/langs/zh/core/BOOTSTRAP.md +1 -1
- package/templates/langs/zh/principles/THINKING_OS.md +1 -1
- package/templates/langs/zh/skills/admin/SKILL.md +2 -2
- package/templates/langs/zh/skills/pd-grooming/SKILL.md +1 -1
- package/templates/langs/zh/skills/reflection/SKILL.md +2 -2
- package/templates/langs/zh/skills/report/SKILL.md +1 -1
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/EXAMPLES.md +0 -63
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/REFERENCE.md +0 -136
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/SKILL.md +0 -67
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/references/agent-registry.json +0 -143
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/references/specs/bugfix-complex-template.json +0 -107
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/references/specs/feature-complex-template.json +0 -107
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/references/specs/workflow-validation-minimal-verify.json +0 -95
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/references/specs/workflow-validation-minimal.json +0 -98
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/references/workflow-v1-acceptance-checklist.md +0 -58
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/references/workflow-v1.4-work-unit-handoff.md +0 -190
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/scripts/lib/archive.mjs +0 -310
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/scripts/lib/contract-enforcement.mjs +0 -683
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/scripts/lib/decision.mjs +0 -604
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/scripts/lib/state-store.mjs +0 -32
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/scripts/lib/task-specs.mjs +0 -707
- package/plugin/templates/langs/en/skills/ai-sprint-orchestration/scripts/run.mjs +0 -3455
- package/plugin/templates/langs/en/skills/evolve-system/SKILL.md +0 -46
- package/plugin/templates/langs/en/skills/manage-okr/SKILL.md +0 -96
- package/plugin/templates/langs/en/skills/pd-daily/SKILL.md +0 -199
- package/plugin/templates/langs/en/skills/pd-grooming/SKILL.md +0 -46
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/EXAMPLES.md +0 -63
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/REFERENCE.md +0 -136
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/SKILL.md +0 -67
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/references/agent-registry.json +0 -143
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/references/specs/bugfix-complex-template.json +0 -107
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/references/specs/feature-complex-template.json +0 -107
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/references/specs/nocturnal-trinity-quality-enhancement.json +0 -111
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/references/specs/workflow-validation-minimal-verify.json +0 -95
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/references/specs/workflow-validation-minimal.json +0 -98
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/references/workflow-v1-acceptance-checklist.md +0 -58
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/references/workflow-v1.4-work-unit-handoff.md +0 -190
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/runtime/.gitignore +0 -2
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/scripts/lib/archive.mjs +0 -310
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/scripts/lib/contract-enforcement.mjs +0 -683
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/scripts/lib/decision.mjs +0 -604
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/scripts/lib/state-store.mjs +0 -32
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/scripts/lib/task-specs.mjs +0 -707
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/scripts/run.mjs +0 -3455
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/test/archive.test.mjs +0 -230
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/test/contract-enforcement.test.mjs +0 -672
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/test/decision.test.mjs +0 -1321
- package/plugin/templates/langs/zh/skills/ai-sprint-orchestration/test/run.test.mjs +0 -1435
- package/plugin/templates/langs/zh/skills/evolve-system/SKILL.md +0 -46
- package/plugin/templates/langs/zh/skills/manage-okr/SKILL.md +0 -109
- package/plugin/templates/langs/zh/skills/pd-daily/SKILL.md +0 -283
- package/plugin/templates/langs/zh/skills/pd-grooming/SKILL.md +0 -46
- package/plugin/templates/workspace/PLAN.md +0 -2
- package/templates/workspace/PLAN.md +0 -2
|
@@ -0,0 +1,328 @@
|
|
|
1
|
+
import { describe, it, expect } from 'vitest';
|
|
2
|
+
import { migrateWorkspaceGuidance, containsStalePlanMdGuidance, STALE_PLAN_MD_PATTERNS, } from '../workspace-guidance-migration.js';
|
|
3
|
+
describe('workspace-guidance-migration', () => {
|
|
4
|
+
describe('STALE_PLAN_MD_PATTERNS coverage', () => {
|
|
5
|
+
it('has at least one rule per target filename suffix', () => {
|
|
6
|
+
const targetSuffixes = [
|
|
7
|
+
'AGENTS.md',
|
|
8
|
+
'THINKING_OS.md',
|
|
9
|
+
'MEMORY.md',
|
|
10
|
+
'admin/SKILL.md',
|
|
11
|
+
'reflection/SKILL.md',
|
|
12
|
+
'report/SKILL.md',
|
|
13
|
+
'pd-grooming/SKILL.md',
|
|
14
|
+
];
|
|
15
|
+
for (const suffix of targetSuffixes) {
|
|
16
|
+
const hasRule = STALE_PLAN_MD_PATTERNS.some((p) => p.description.toLowerCase().includes(suffix.toLowerCase()));
|
|
17
|
+
expect(hasRule, `No rule targets ${suffix}`).toBe(true);
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
});
|
|
21
|
+
describe('AGENTS.md migration', () => {
|
|
22
|
+
it('removes Physical interception line', () => {
|
|
23
|
+
const input = 'Some text\nPhysical interception ensures safety.\nMore text';
|
|
24
|
+
const result = migrateWorkspaceGuidance(input, 'AGENTS.md');
|
|
25
|
+
expect(result.changed).toBe(true);
|
|
26
|
+
expect(result.migrated).not.toContain('Physical interception');
|
|
27
|
+
expect(result.migrated).toContain('Some text');
|
|
28
|
+
expect(result.migrated).toContain('More text');
|
|
29
|
+
});
|
|
30
|
+
it('removes 物理拦截 line', () => {
|
|
31
|
+
const input = 'Some text\n物理拦截确保安全。\nMore text';
|
|
32
|
+
const result = migrateWorkspaceGuidance(input, 'AGENTS.md');
|
|
33
|
+
expect(result.changed).toBe(true);
|
|
34
|
+
expect(result.migrated).not.toContain('物理拦截');
|
|
35
|
+
});
|
|
36
|
+
it('removes Single source of truth PLAN line', () => {
|
|
37
|
+
const input = 'Some text\nSingle source of truth: PLAN.md tracks all changes.\nMore text';
|
|
38
|
+
const result = migrateWorkspaceGuidance(input, 'AGENTS.md');
|
|
39
|
+
expect(result.changed).toBe(true);
|
|
40
|
+
expect(result.migrated).not.toContain('Single source of truth');
|
|
41
|
+
expect(result.migrated).not.toContain('PLAN.md');
|
|
42
|
+
});
|
|
43
|
+
it('removes PLAN.md status READY line', () => {
|
|
44
|
+
const input = 'Some text\nWrite to `PLAN.md` (status: READY) before proceeding.\nMore text';
|
|
45
|
+
const result = migrateWorkspaceGuidance(input, 'AGENTS.md');
|
|
46
|
+
expect(result.changed).toBe(true);
|
|
47
|
+
expect(result.migrated).not.toContain('PLAN.md` (status: READY)');
|
|
48
|
+
});
|
|
49
|
+
it('removes project physical plan line', () => {
|
|
50
|
+
const input = 'Some text\nThe project physical plan governs all file writes.\nMore text';
|
|
51
|
+
const result = migrateWorkspaceGuidance(input, 'AGENTS.md');
|
|
52
|
+
expect(result.changed).toBe(true);
|
|
53
|
+
expect(result.migrated).not.toContain('project physical plan');
|
|
54
|
+
});
|
|
55
|
+
it('removes 项目物理计划 line', () => {
|
|
56
|
+
const input = 'Some text\n项目物理计划管理所有文件写入。\nMore text';
|
|
57
|
+
const result = migrateWorkspaceGuidance(input, 'AGENTS.md');
|
|
58
|
+
expect(result.changed).toBe(true);
|
|
59
|
+
expect(result.migrated).not.toContain('项目物理计划');
|
|
60
|
+
});
|
|
61
|
+
it('removes L2 delegation line tied to PLAN.md', () => {
|
|
62
|
+
const input = 'Some text\nL2 delegation through PLAN.md gate enforcement.\nMore text';
|
|
63
|
+
const result = migrateWorkspaceGuidance(input, 'AGENTS.md');
|
|
64
|
+
expect(result.changed).toBe(true);
|
|
65
|
+
expect(result.migrated).not.toContain('L2 delegation');
|
|
66
|
+
});
|
|
67
|
+
it('removes L2 委派 line tied to PLAN.md', () => {
|
|
68
|
+
const input = 'Some text\nL2 委派通过 PLAN.md 门控执行。\nMore text';
|
|
69
|
+
const result = migrateWorkspaceGuidance(input, 'AGENTS.md');
|
|
70
|
+
expect(result.changed).toBe(true);
|
|
71
|
+
expect(result.migrated).not.toContain('L2 委派');
|
|
72
|
+
});
|
|
73
|
+
it('does not change clean AGENTS.md', () => {
|
|
74
|
+
const input = '# Agent Instructions\n\nFollow the principles.\nNo gate references here.';
|
|
75
|
+
const result = migrateWorkspaceGuidance(input, 'AGENTS.md');
|
|
76
|
+
expect(result.changed).toBe(false);
|
|
77
|
+
expect(result.migrated).toBe(input);
|
|
78
|
+
});
|
|
79
|
+
});
|
|
80
|
+
describe('THINKING_OS.md migration', () => {
|
|
81
|
+
it('removes " or `PLAN.md`" from T-02 directive', () => {
|
|
82
|
+
const input = '<must>TRUST FILES, NOT YOUR CONTEXT WINDOW. You MUST actively write your intermediate conclusions, breakpoints, and next steps to `memory/.scratchpad.md` or `PLAN.md`.</must>';
|
|
83
|
+
const result = migrateWorkspaceGuidance(input, 'THINKING_OS.md');
|
|
84
|
+
expect(result.changed).toBe(true);
|
|
85
|
+
expect(result.migrated).toContain('`memory/.scratchpad.md`');
|
|
86
|
+
expect(result.migrated).not.toContain('or `PLAN.md`');
|
|
87
|
+
});
|
|
88
|
+
it('removes "或 `PLAN.md`" from T-02 directive (zh)', () => {
|
|
89
|
+
const input = '<must>信任文件,而不是你的上下文窗口。你必须主动将中间结论、断点和后续步骤写入 `memory/.scratchpad.md` 或 `PLAN.md`。</must>';
|
|
90
|
+
const result = migrateWorkspaceGuidance(input, 'THINKING_OS.md');
|
|
91
|
+
expect(result.changed).toBe(true);
|
|
92
|
+
expect(result.migrated).toContain('`memory/.scratchpad.md`');
|
|
93
|
+
expect(result.migrated).not.toContain('或 `PLAN.md`');
|
|
94
|
+
});
|
|
95
|
+
it('removes PLAN.md status READY line', () => {
|
|
96
|
+
const input = 'Some text\nWrite to `PLAN.md` (status: READY) for persistence.\nMore text';
|
|
97
|
+
const result = migrateWorkspaceGuidance(input, 'THINKING_OS.md');
|
|
98
|
+
expect(result.changed).toBe(true);
|
|
99
|
+
expect(result.migrated).not.toContain('PLAN.md` (status: READY)');
|
|
100
|
+
});
|
|
101
|
+
it('does not change clean THINKING_OS.md', () => {
|
|
102
|
+
const input = '<must>TRUST FILES, NOT YOUR CONTEXT WINDOW. You MUST actively write your intermediate conclusions, breakpoints, and next steps to `memory/.scratchpad.md`.</must>';
|
|
103
|
+
const result = migrateWorkspaceGuidance(input, 'THINKING_OS.md');
|
|
104
|
+
expect(result.changed).toBe(false);
|
|
105
|
+
});
|
|
106
|
+
});
|
|
107
|
+
describe('MEMORY.md migration', () => {
|
|
108
|
+
it('removes PLAN.md mechanism protects line', () => {
|
|
109
|
+
const input = 'Some text\nThe PLAN.md mechanism protects critical files.\nMore text';
|
|
110
|
+
const result = migrateWorkspaceGuidance(input, 'MEMORY.md');
|
|
111
|
+
expect(result.changed).toBe(true);
|
|
112
|
+
expect(result.migrated).not.toContain('PLAN.md mechanism protects');
|
|
113
|
+
});
|
|
114
|
+
it('removes PLAN.md 机制保护 line', () => {
|
|
115
|
+
const input = 'Some text\nPLAN.md 机制保护关键文件。\nMore text';
|
|
116
|
+
const result = migrateWorkspaceGuidance(input, 'MEMORY.md');
|
|
117
|
+
expect(result.changed).toBe(true);
|
|
118
|
+
expect(result.migrated).not.toContain('PLAN.md 机制保护');
|
|
119
|
+
});
|
|
120
|
+
it('removes STATUS: READY line', () => {
|
|
121
|
+
const input = 'Some text\nRecover by setting STATUS: READY in PLAN.md.\nMore text';
|
|
122
|
+
const result = migrateWorkspaceGuidance(input, 'MEMORY.md');
|
|
123
|
+
expect(result.changed).toBe(true);
|
|
124
|
+
expect(result.migrated).not.toContain('STATUS: READY');
|
|
125
|
+
});
|
|
126
|
+
it('appends historical note when content is removed', () => {
|
|
127
|
+
const input = 'Some text\nThe PLAN.md mechanism protects critical files.\nMore text';
|
|
128
|
+
const result = migrateWorkspaceGuidance(input, 'MEMORY.md');
|
|
129
|
+
expect(result.changed).toBe(true);
|
|
130
|
+
expect(result.migrated).toContain('[Historical: confirm-first gate was removed in PRI-286');
|
|
131
|
+
});
|
|
132
|
+
it('does not append historical note when no content is removed', () => {
|
|
133
|
+
const input = 'Some text\nNo stale references here.\nMore text';
|
|
134
|
+
const result = migrateWorkspaceGuidance(input, 'MEMORY.md');
|
|
135
|
+
expect(result.changed).toBe(false);
|
|
136
|
+
expect(result.migrated).not.toContain('[Historical');
|
|
137
|
+
});
|
|
138
|
+
});
|
|
139
|
+
describe('admin/SKILL.md migration', () => {
|
|
140
|
+
it('removes Ensure PLAN.md contains Target Files heading line', () => {
|
|
141
|
+
const input = '- **Documentation Integrity**: Check if `.principles/PROFILE.json`, `PLAN.md` etc. exist.\n- **Structure Completion**: Ensure `PLAN.md` contains `## Target Files` heading.';
|
|
142
|
+
const result = migrateWorkspaceGuidance(input, 'admin/SKILL.md');
|
|
143
|
+
expect(result.changed).toBe(true);
|
|
144
|
+
expect(result.migrated).not.toContain('Ensure `PLAN.md` contains `## Target Files`');
|
|
145
|
+
});
|
|
146
|
+
it('removes 确保 PLAN.md 包含 Target Files 标题 line', () => {
|
|
147
|
+
const input = '- **文档完整性**: 检查 `.principles/PROFILE.json`, `PLAN.md` 等是否存在。\n- **结构补全**: 确保 `PLAN.md` 包含 `## Target Files` 标题。';
|
|
148
|
+
const result = migrateWorkspaceGuidance(input, 'admin/SKILL.md');
|
|
149
|
+
expect(result.changed).toBe(true);
|
|
150
|
+
expect(result.migrated).not.toContain('确保 `PLAN.md` 包含 `## Target Files`');
|
|
151
|
+
});
|
|
152
|
+
it('removes PLAN.md from trailing list position', () => {
|
|
153
|
+
const input = 'Check `.principles/PROFILE.json`, `PLAN.md` etc.';
|
|
154
|
+
const result = migrateWorkspaceGuidance(input, 'admin/SKILL.md');
|
|
155
|
+
expect(result.changed).toBe(true);
|
|
156
|
+
expect(result.migrated).not.toContain('`PLAN.md`');
|
|
157
|
+
});
|
|
158
|
+
it('removes PLAN.md from leading list position', () => {
|
|
159
|
+
const input = 'Check `PLAN.md`, `.principles/PROFILE.json` etc.';
|
|
160
|
+
const result = migrateWorkspaceGuidance(input, 'admin/SKILL.md');
|
|
161
|
+
expect(result.changed).toBe(true);
|
|
162
|
+
expect(result.migrated).not.toContain('`PLAN.md`');
|
|
163
|
+
});
|
|
164
|
+
});
|
|
165
|
+
describe('reflection/SKILL.md migration', () => {
|
|
166
|
+
it('replaces Check PLAN.md or early conversation (en)', () => {
|
|
167
|
+
const input = '- **Goal**: What was our original objective? (Check `PLAN.md` or early conversation)';
|
|
168
|
+
const result = migrateWorkspaceGuidance(input, 'reflection/SKILL.md');
|
|
169
|
+
expect(result.changed).toBe(true);
|
|
170
|
+
expect(result.migrated).toContain('Check early conversation context');
|
|
171
|
+
expect(result.migrated).not.toContain('`PLAN.md`');
|
|
172
|
+
});
|
|
173
|
+
it('replaces 检查 PLAN.md 或早期对话 (zh)', () => {
|
|
174
|
+
const input = '- **Goal**: 我们最初的目标是什么?(检查 `PLAN.md` 或早期对话)';
|
|
175
|
+
const result = migrateWorkspaceGuidance(input, 'reflection/SKILL.md');
|
|
176
|
+
expect(result.changed).toBe(true);
|
|
177
|
+
expect(result.migrated).toContain('检查早期对话上下文');
|
|
178
|
+
expect(result.migrated).not.toContain('`PLAN.md`');
|
|
179
|
+
});
|
|
180
|
+
it('replaces Update PLAN.md (en)', () => {
|
|
181
|
+
const input = '- Update `PLAN.md`, mark current progress, ensure seamless continuation after compaction.';
|
|
182
|
+
const result = migrateWorkspaceGuidance(input, 'reflection/SKILL.md');
|
|
183
|
+
expect(result.changed).toBe(true);
|
|
184
|
+
expect(result.migrated).toContain('Update `memory/.scratchpad.md`');
|
|
185
|
+
expect(result.migrated).not.toContain('Update `PLAN.md`');
|
|
186
|
+
});
|
|
187
|
+
it('replaces 更新 PLAN.md (zh)', () => {
|
|
188
|
+
const input = '- 更新 `PLAN.md`,标记当前进度,确保压缩后能无缝衔接。';
|
|
189
|
+
const result = migrateWorkspaceGuidance(input, 'reflection/SKILL.md');
|
|
190
|
+
expect(result.changed).toBe(true);
|
|
191
|
+
expect(result.migrated).toContain('更新 `memory/.scratchpad.md`');
|
|
192
|
+
expect(result.migrated).not.toContain('更新 `PLAN.md`');
|
|
193
|
+
});
|
|
194
|
+
});
|
|
195
|
+
describe('report/SKILL.md migration', () => {
|
|
196
|
+
it('removes PLAN.md from task description (en)', () => {
|
|
197
|
+
const input = 'analyze current conversation context, `PLAN.md`, and recent `memory/ISSUE_LOG.md`';
|
|
198
|
+
const result = migrateWorkspaceGuidance(input, 'report/SKILL.md');
|
|
199
|
+
expect(result.changed).toBe(true);
|
|
200
|
+
expect(result.migrated).not.toContain('`PLAN.md`');
|
|
201
|
+
expect(result.migrated).toContain('analyze current conversation context and recent');
|
|
202
|
+
});
|
|
203
|
+
it('removes PLAN.md from task description (zh)', () => {
|
|
204
|
+
const input = '分析当前的对话上下文、`PLAN.md` 和最近的 `memory/ISSUE_LOG.md`';
|
|
205
|
+
const result = migrateWorkspaceGuidance(input, 'report/SKILL.md');
|
|
206
|
+
expect(result.changed).toBe(true);
|
|
207
|
+
expect(result.migrated).not.toContain('`PLAN.md`');
|
|
208
|
+
expect(result.migrated).toContain('分析当前的对话上下文和最近的');
|
|
209
|
+
});
|
|
210
|
+
});
|
|
211
|
+
describe('pd-grooming/SKILL.md migration', () => {
|
|
212
|
+
it('removes PLAN.md from Core Assets trailing position', () => {
|
|
213
|
+
const input = '- `README.md`, `PLAN.md`\n- `.principles/`, `.state/`';
|
|
214
|
+
const result = migrateWorkspaceGuidance(input, 'pd-grooming/SKILL.md');
|
|
215
|
+
expect(result.changed).toBe(true);
|
|
216
|
+
expect(result.migrated).not.toContain('`PLAN.md`');
|
|
217
|
+
expect(result.migrated).toContain('`README.md`');
|
|
218
|
+
});
|
|
219
|
+
it('removes PLAN.md from Core Assets leading position', () => {
|
|
220
|
+
const input = '- `PLAN.md`, `README.md`\n- `.principles/`, `.state/`';
|
|
221
|
+
const result = migrateWorkspaceGuidance(input, 'pd-grooming/SKILL.md');
|
|
222
|
+
expect(result.changed).toBe(true);
|
|
223
|
+
expect(result.migrated).not.toContain('`PLAN.md`');
|
|
224
|
+
expect(result.migrated).toContain('`README.md`');
|
|
225
|
+
});
|
|
226
|
+
});
|
|
227
|
+
describe('containsStalePlanMdGuidance', () => {
|
|
228
|
+
it('returns true for AGENTS.md with stale content', () => {
|
|
229
|
+
expect(containsStalePlanMdGuidance('Physical interception ensures safety.', 'AGENTS.md')).toBe(true);
|
|
230
|
+
});
|
|
231
|
+
it('returns false for AGENTS.md without stale content', () => {
|
|
232
|
+
expect(containsStalePlanMdGuidance('Clean content here.', 'AGENTS.md')).toBe(false);
|
|
233
|
+
});
|
|
234
|
+
it('returns true for THINKING_OS.md with stale content', () => {
|
|
235
|
+
expect(containsStalePlanMdGuidance('Write to `memory/.scratchpad.md` or `PLAN.md`.', 'THINKING_OS.md')).toBe(true);
|
|
236
|
+
});
|
|
237
|
+
it('returns true for MEMORY.md with stale content', () => {
|
|
238
|
+
expect(containsStalePlanMdGuidance('The PLAN.md mechanism protects critical files.', 'MEMORY.md')).toBe(true);
|
|
239
|
+
});
|
|
240
|
+
it('returns true for skill SKILL.md with stale content', () => {
|
|
241
|
+
expect(containsStalePlanMdGuidance('Ensure `PLAN.md` contains `## Target Files` heading.', 'admin/SKILL.md')).toBe(true);
|
|
242
|
+
});
|
|
243
|
+
it('returns false for unknown filename with PLAN.md mention', () => {
|
|
244
|
+
expect(containsStalePlanMdGuidance('Some file mentions PLAN.md', 'RANDOM.md')).toBe(false);
|
|
245
|
+
});
|
|
246
|
+
});
|
|
247
|
+
describe('fresh install verification', () => {
|
|
248
|
+
it('current AGENTS.md templates contain no stale PLAN.md gate guidance', () => {
|
|
249
|
+
const freshAgentsMd = `# Agent Instructions
|
|
250
|
+
|
|
251
|
+
Follow the principles and guidelines set by the owner.
|
|
252
|
+
No gate references here.
|
|
253
|
+
Use memory/.scratchpad.md for persistence.`;
|
|
254
|
+
expect(containsStalePlanMdGuidance(freshAgentsMd, 'AGENTS.md')).toBe(false);
|
|
255
|
+
});
|
|
256
|
+
it('current THINKING_OS.md templates contain no stale PLAN.md gate guidance', () => {
|
|
257
|
+
const freshThinkingOs = `<must>TRUST FILES, NOT YOUR CONTEXT WINDOW. You MUST actively write your intermediate conclusions, breakpoints, and next steps to \`memory/.scratchpad.md\`.</must>`;
|
|
258
|
+
expect(containsStalePlanMdGuidance(freshThinkingOs, 'THINKING_OS.md')).toBe(false);
|
|
259
|
+
});
|
|
260
|
+
it('current MEMORY.md templates contain no stale PLAN.md gate guidance', () => {
|
|
261
|
+
const freshMemory = `# Memory\n\nWorking memory and context tracking.\nNo stale references.`;
|
|
262
|
+
expect(containsStalePlanMdGuidance(freshMemory, 'MEMORY.md')).toBe(false);
|
|
263
|
+
});
|
|
264
|
+
it('current admin/SKILL.md templates contain no stale PLAN.md gate guidance', () => {
|
|
265
|
+
const freshAdmin = `- **Documentation Integrity**: Check if \`.principles/PROFILE.json\` etc. exist.\n- **Structure Completion**: Ensure workspace structure is complete.`;
|
|
266
|
+
expect(containsStalePlanMdGuidance(freshAdmin, 'admin/SKILL.md')).toBe(false);
|
|
267
|
+
});
|
|
268
|
+
it('current reflection/SKILL.md templates contain no stale PLAN.md gate guidance', () => {
|
|
269
|
+
const freshReflection = `- **Goal**: What was our original objective? (Check early conversation context)\n- Update \`memory/.scratchpad.md\`, mark current progress.`;
|
|
270
|
+
expect(containsStalePlanMdGuidance(freshReflection, 'reflection/SKILL.md')).toBe(false);
|
|
271
|
+
});
|
|
272
|
+
it('current report/SKILL.md templates contain no stale PLAN.md gate guidance', () => {
|
|
273
|
+
const freshReport = `analyze current conversation context and recent \`memory/ISSUE_LOG.md\``;
|
|
274
|
+
expect(containsStalePlanMdGuidance(freshReport, 'report/SKILL.md')).toBe(false);
|
|
275
|
+
});
|
|
276
|
+
it('current pd-grooming/SKILL.md templates contain no stale PLAN.md gate guidance', () => {
|
|
277
|
+
const freshGrooming = `- \`README.md\`\n- \`.principles/\`, \`.state/\``;
|
|
278
|
+
expect(containsStalePlanMdGuidance(freshGrooming, 'pd-grooming/SKILL.md')).toBe(false);
|
|
279
|
+
});
|
|
280
|
+
});
|
|
281
|
+
describe('upgrade migration preserves non-stale content', () => {
|
|
282
|
+
it('preserves all non-stale lines in AGENTS.md', () => {
|
|
283
|
+
const input = `# Agent Instructions
|
|
284
|
+
|
|
285
|
+
Follow the owner's principles.
|
|
286
|
+
Physical interception ensures safety.
|
|
287
|
+
Always verify before acting.
|
|
288
|
+
项目物理计划管理所有文件写入。
|
|
289
|
+
Keep workspace clean.`;
|
|
290
|
+
const result = migrateWorkspaceGuidance(input, 'AGENTS.md');
|
|
291
|
+
expect(result.changed).toBe(true);
|
|
292
|
+
expect(result.migrated).toContain("Follow the owner's principles.");
|
|
293
|
+
expect(result.migrated).toContain('Always verify before acting.');
|
|
294
|
+
expect(result.migrated).toContain('Keep workspace clean.');
|
|
295
|
+
expect(result.migrated).not.toContain('Physical interception');
|
|
296
|
+
expect(result.migrated).not.toContain('项目物理计划');
|
|
297
|
+
});
|
|
298
|
+
it('preserves all non-stale lines in MEMORY.md and adds historical note', () => {
|
|
299
|
+
const input = `# Memory
|
|
300
|
+
|
|
301
|
+
Working memory and context tracking.
|
|
302
|
+
The PLAN.md mechanism protects critical files.
|
|
303
|
+
Recover by setting STATUS: READY in PLAN.md.
|
|
304
|
+
Important operational notes here.`;
|
|
305
|
+
const result = migrateWorkspaceGuidance(input, 'MEMORY.md');
|
|
306
|
+
expect(result.changed).toBe(true);
|
|
307
|
+
expect(result.migrated).toContain('Working memory and context tracking.');
|
|
308
|
+
expect(result.migrated).toContain('Important operational notes here.');
|
|
309
|
+
expect(result.migrated).not.toContain('PLAN.md mechanism protects');
|
|
310
|
+
expect(result.migrated).not.toContain('STATUS: READY');
|
|
311
|
+
expect(result.migrated).toContain('[Historical: confirm-first gate was removed in PRI-286');
|
|
312
|
+
});
|
|
313
|
+
it('handles full-path filenames (Windows and Unix)', () => {
|
|
314
|
+
const input = 'Physical interception ensures safety.';
|
|
315
|
+
const winResult = migrateWorkspaceGuidance(input, 'D:\\workspace\\AGENTS.md');
|
|
316
|
+
expect(winResult.changed).toBe(true);
|
|
317
|
+
const unixResult = migrateWorkspaceGuidance(input, '/home/user/workspace/AGENTS.md');
|
|
318
|
+
expect(unixResult.changed).toBe(true);
|
|
319
|
+
});
|
|
320
|
+
it('handles skill files with full paths', () => {
|
|
321
|
+
const input = 'Ensure `PLAN.md` contains `## Target Files` heading.';
|
|
322
|
+
const result = migrateWorkspaceGuidance(input, '/workspace/.principles/skills/admin/SKILL.md');
|
|
323
|
+
expect(result.changed).toBe(true);
|
|
324
|
+
expect(result.migrated).not.toContain('Ensure `PLAN.md`');
|
|
325
|
+
});
|
|
326
|
+
});
|
|
327
|
+
});
|
|
328
|
+
//# sourceMappingURL=workspace-guidance-migration.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workspace-guidance-migration.test.js","sourceRoot":"","sources":["../../../src/runtime-v2/__tests__/workspace-guidance-migration.test.ts"],"names":[],"mappings":"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"}
|
package/core/dist/runtime-v2/activation/__tests__/prompt-activation-reader-contract.test.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prompt-activation-reader-contract.test.d.ts","sourceRoot":"","sources":["../../../../src/runtime-v2/activation/__tests__/prompt-activation-reader-contract.test.ts"],"names":[],"mappings":""}
|