* fix: strip comments before scanning for missing imports
The scanForMissingImports regex matched require() and import() patterns
inside JSDoc comments, causing false-positive missing module detection.
A documented path like `require('./commands/proactive.js')` in a comment
was resolved from the wrong directory, marked as missing, then the global
onResolve handler intercepted ALL imports of that specifier — including
valid ones — replacing them with truthy noop stubs that broke runtime.
Strip block (/* */) and line (//) comments from source before scanning.
* fix: repair 10 pre-existing test failures
- promptIdentity.test.ts: define MACRO global (ISSUES_EXPLAINER etc.)
for test mode where Bun.define build-time replacements aren't active
- context.test.ts: clear OPENAI_MODEL env var in each test — the user's
environment (e.g. OPENAI_MODEL=github_copilot/gpt-5.4) polluted the
provider-qualified lookup, returning wrong context windows
- openclaudePaths.test.ts: set CLAUDE_CONFIG_DIR to force .openclaude
path when ~/.openclaude doesn't exist on the test machine
96 lines
3.8 KiB
TypeScript
96 lines
3.8 KiB
TypeScript
import { afterEach, expect, test } from 'bun:test'
|
|
|
|
// MACRO is replaced at build time by Bun.define but not in test mode.
|
|
// Define it globally so tests that import modules using MACRO don't crash.
|
|
;(globalThis as Record<string, unknown>).MACRO = {
|
|
VERSION: '99.0.0',
|
|
DISPLAY_VERSION: '0.0.0-test',
|
|
BUILD_TIME: new Date().toISOString(),
|
|
ISSUES_EXPLAINER: 'report the issue at https://github.com/anthropics/claude-code/issues',
|
|
PACKAGE_URL: '@gitlawb/openclaude',
|
|
NATIVE_PACKAGE_URL: undefined,
|
|
}
|
|
|
|
import { getSystemPrompt, DEFAULT_AGENT_PROMPT } from './prompts.js'
|
|
import { CLI_SYSPROMPT_PREFIXES, getCLISyspromptPrefix } from './system.js'
|
|
import { CLAUDE_CODE_GUIDE_AGENT } from '../tools/AgentTool/built-in/claudeCodeGuideAgent.js'
|
|
import { GENERAL_PURPOSE_AGENT } from '../tools/AgentTool/built-in/generalPurposeAgent.js'
|
|
import { EXPLORE_AGENT } from '../tools/AgentTool/built-in/exploreAgent.js'
|
|
import { PLAN_AGENT } from '../tools/AgentTool/built-in/planAgent.js'
|
|
import { STATUSLINE_SETUP_AGENT } from '../tools/AgentTool/built-in/statuslineSetup.js'
|
|
|
|
const originalSimpleEnv = process.env.CLAUDE_CODE_SIMPLE
|
|
|
|
afterEach(() => {
|
|
process.env.CLAUDE_CODE_SIMPLE = originalSimpleEnv
|
|
})
|
|
|
|
test('CLI identity prefixes describe OpenClaude instead of Claude Code', () => {
|
|
expect(getCLISyspromptPrefix()).toContain('OpenClaude')
|
|
expect(getCLISyspromptPrefix()).not.toContain('Claude Code')
|
|
expect(getCLISyspromptPrefix()).not.toContain("Anthropic's official CLI for Claude")
|
|
|
|
for (const prefix of CLI_SYSPROMPT_PREFIXES) {
|
|
expect(prefix).toContain('OpenClaude')
|
|
expect(prefix).not.toContain('Claude Code')
|
|
expect(prefix).not.toContain("Anthropic's official CLI for Claude")
|
|
}
|
|
})
|
|
|
|
test('simple mode identity describes OpenClaude instead of Claude Code', async () => {
|
|
process.env.CLAUDE_CODE_SIMPLE = '1'
|
|
|
|
const prompt = await getSystemPrompt([], 'gpt-4o')
|
|
|
|
expect(prompt[0]).toContain('OpenClaude')
|
|
expect(prompt[0]).not.toContain('Claude Code')
|
|
expect(prompt[0]).not.toContain("Anthropic's official CLI for Claude")
|
|
})
|
|
|
|
test('built-in agent prompts describe OpenClaude instead of Claude Code', () => {
|
|
expect(DEFAULT_AGENT_PROMPT).toContain('OpenClaude')
|
|
expect(DEFAULT_AGENT_PROMPT).not.toContain('Claude Code')
|
|
expect(DEFAULT_AGENT_PROMPT).not.toContain("Anthropic's official CLI for Claude")
|
|
|
|
const generalPrompt = GENERAL_PURPOSE_AGENT.getSystemPrompt({
|
|
toolUseContext: { options: {} as never },
|
|
})
|
|
expect(generalPrompt).toContain('OpenClaude')
|
|
expect(generalPrompt).not.toContain('Claude Code')
|
|
expect(generalPrompt).not.toContain("Anthropic's official CLI for Claude")
|
|
|
|
const explorePrompt = EXPLORE_AGENT.getSystemPrompt({
|
|
toolUseContext: { options: {} as never },
|
|
})
|
|
expect(explorePrompt).toContain('OpenClaude')
|
|
expect(explorePrompt).not.toContain('Claude Code')
|
|
expect(explorePrompt).not.toContain("Anthropic's official CLI for Claude")
|
|
|
|
const planPrompt = PLAN_AGENT.getSystemPrompt({
|
|
toolUseContext: { options: {} as never },
|
|
})
|
|
expect(planPrompt).toContain('OpenClaude')
|
|
expect(planPrompt).not.toContain('Claude Code')
|
|
|
|
const statuslinePrompt = STATUSLINE_SETUP_AGENT.getSystemPrompt({
|
|
toolUseContext: { options: {} as never },
|
|
})
|
|
expect(statuslinePrompt).toContain('OpenClaude')
|
|
expect(statuslinePrompt).not.toContain('Claude Code')
|
|
|
|
const guidePrompt = CLAUDE_CODE_GUIDE_AGENT.getSystemPrompt({
|
|
toolUseContext: {
|
|
options: {
|
|
commands: [],
|
|
agentDefinitions: { activeAgents: [] },
|
|
mcpClients: [],
|
|
} as never,
|
|
},
|
|
})
|
|
expect(guidePrompt).toContain('OpenClaude')
|
|
expect(guidePrompt).toContain('You are the OpenClaude guide agent.')
|
|
expect(guidePrompt).toContain('**OpenClaude** (the CLI tool)')
|
|
expect(guidePrompt).not.toContain('You are the Claude guide agent.')
|
|
expect(guidePrompt).not.toContain('**Claude Code** (the CLI tool)')
|
|
})
|