@veewo/gitnexus 1.4.11-rc → 1.4.11-rc.2

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.
@@ -57,12 +57,6 @@ function generateGitNexusContent(projectName, stats, skillScope, cliPackageSpec,
57
57
  | Tools, resources, schema reference | \`${skillRoot}/gitnexus-guide/SKILL.md\` |
58
58
  | Index, status, clean, wiki CLI commands | \`${skillRoot}/gitnexus-cli/SKILL.md\` |${generatedRows}
59
59
 
60
- ## Unity Runtime Process 真理源
61
-
62
- - 统一设计与实现对照文档:\`docs/unity-runtime-process-source-of-truth.md\`
63
- - 涉及 Unity runtime process 的任务,先阅读该文档,再执行检索/实现/验收。
64
- - 若历史设计文档与当前实现不一致,以该真理源文档和对应代码为准,并在变更后同步更新。
65
-
66
60
  ${GITNEXUS_END_MARKER}`;
67
61
  }
68
62
  /**
@@ -23,10 +23,9 @@ test('generateAIContextFiles installs repo skills under .agents/skills/gitnexus'
23
23
  await fs.access(sharedRuntimeContractPath);
24
24
  assert.match(agentsContent, /\.agents\/skills\/gitnexus\/gitnexus-exploring\/SKILL\.md/);
25
25
  assert.match(claudeContent, /\.agents\/skills\/gitnexus\/gitnexus-exploring\/SKILL\.md/);
26
- assert.match(agentsContent, /## Unity Runtime Process 真理源/);
27
- assert.match(agentsContent, /docs\/unity-runtime-process-source-of-truth\.md/);
28
- assert.match(claudeContent, /## Unity Runtime Process 真理源/);
29
- assert.match(claudeContent, /docs\/unity-runtime-process-source-of-truth\.md/);
26
+ assert.doesNotMatch(agentsContent, /## Unity Runtime Process 真理源/);
27
+ assert.doesNotMatch(claudeContent, /## Unity Runtime Process 真理源/);
28
+ assert.equal(agentsContent, claudeContent, 'AGENTS.md and CLAUDE.md should stay content-identical');
30
29
  assert.ok(result.files.some((entry) => entry.includes('.agents/skills/gitnexus/')), 'expected generated file summary to include .agents/skills/gitnexus/');
31
30
  await assert.rejects(fs.access(legacyClaudeSkillsDir));
32
31
  }
@@ -49,10 +48,9 @@ test('generateAIContextFiles with global scope skips repo skill install', async
49
48
  const claudeContent = await fs.readFile(claudePath, 'utf-8');
50
49
  assert.match(agentsContent, /~\/\.agents\/skills\/gitnexus\/gitnexus-exploring\/SKILL\.md/);
51
50
  assert.match(claudeContent, /~\/\.agents\/skills\/gitnexus\/gitnexus-exploring\/SKILL\.md/);
52
- assert.match(agentsContent, /## Unity Runtime Process 真理源/);
53
- assert.match(agentsContent, /docs\/unity-runtime-process-source-of-truth\.md/);
54
- assert.match(claudeContent, /## Unity Runtime Process 真理源/);
55
- assert.match(claudeContent, /docs\/unity-runtime-process-source-of-truth\.md/);
51
+ assert.doesNotMatch(agentsContent, /## Unity Runtime Process 真理源/);
52
+ assert.doesNotMatch(claudeContent, /## Unity Runtime Process 真理源/);
53
+ assert.equal(agentsContent, claudeContent, 'AGENTS.md and CLAUDE.md should stay content-identical');
56
54
  assert.ok(!result.files.some((entry) => entry.includes('.agents/skills/gitnexus/')), 'did not expect repo-local skills in generated file summary');
57
55
  await assert.rejects(fs.access(localSkillsDir));
58
56
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veewo/gitnexus",
3
- "version": "1.4.11-rc",
3
+ "version": "1.4.11-rc.2",
4
4
  "description": "Graph-powered code intelligence for AI agents. Index any codebase, query via MCP or CLI.",
5
5
  "author": "Abhigyan Patwari",
6
6
  "license": "PolyForm-Noncommercial-1.0.0",