* fix(devx): fail with actionable message when unit-test build prerequisites are missing (#9149) Package-local unit tests in packages/cli import workspace packages (acp-bridge, sdk, web-templates, channels/*) through their built dist/ output plus the generated git-commit.ts. In a fresh worktree that shares the main checkout's node_modules, or after a deep clean, those artifacts do not exist and vitest fails during collection with resolution errors that blame the wrong thing. Add a vitest globalSetup guard that checks the prerequisites up front and exits with a message naming every missing piece and the command that fixes it (npm run build). Document the prerequisite in the AGENTS.md unit-testing section. * fix(devx): address R1 review findings on the unit-test prerequisite guard - normalize win32 path separators so the guard works on Windows (R1-1) - use Copyright 2026 Qwen Team header (R1-2) - drop over-included packages/sdk-typescript; every sdk import in the cli test graph is an aliased /daemon* subpath (R1-3) - add a sync assertion test: every builtin channel dynamically imported by channel-registry.ts must stay listed in DIST_PREREQUISITES (R1-4) - cover the vitest-invoked entry point via exported checkAndReport (R1-6) - mirror real manifest shapes (exports.default / import variants) in the test fixtures (R1-7) - report missing/unreadable package manifests through the normal exit path instead of crashing with a raw stack trace (R1-8) - derive the package key from vitest-s resolved project root, so vitest run --root packages/cli from elsewhere is covered (R1-9) - probe every exports entry targeting dist/, not only the . entry, so missing unaliased subpath builds are reported too (R2-1) * fix(devx): extend the unit-test prerequisite guard to packages/core Issue #9149's scope names packages/cli AND packages/core, but the guard only covered cli: eight core test files (providers/__tests__/presets/*, provider-config.test.ts) import the bare '@qwen-code/qwen-code-core' specifier, which resolves through the package's own exports to dist/index.js — on a fresh checkout 'cd packages/core && npx vitest run src/path/to/file.test.ts' (the AGENTS.md-documented command) still died with the opaque 'Failed to resolve entry for package' error. - Add 'packages/core': ['packages/core'] to DIST_PREREQUISITES - Wire the same globalSetup guard into packages/core/vitest.config.ts - Skip wildcard pattern exports entries ('./dist/*') in distEntryFiles: core's manifest carries them and they name no individual file — probing them literally would block core test runs even fully built - Generalize the fixture builder to every DIST/GENERATED_PREREQUISITES entry, add coverage for the core dist requirement and the wildcard skip, and move the 'no known prerequisites' example off packages/core - Note the core self-import in AGENTS.md Probe-verified both arms at this commit: dist moved aside -> the guard prints the actionable message and stops the run; dist restored -> the test file passes (11/11). * fix(devx): harden the prerequisite probe and its drift tests - Probe manifest 'main' entries spelled without a leading './': all guarded manifests use "main": "dist/index.js", which the old startsWith('./dist/') predicate never matched, so the documented main probe silently collected nothing. Normalize before the prefix check. - Tolerate digits in builtin channel names in the sync test's registry regex ('channel-[a-z0-9-]+'), or a future channel with a digit in its npm name escapes the drift check. - Add the reverse sync assertion: every listed packages/channels/* prerequisite must map back to a channel-registry import (channel-base excepted as the channels' build dependency), so removing a builtin channel cannot leave a stale entry that hard-blocks cli test runs with a misleading 'fresh checkout' message. - Cover the main-entry probe with a fixture test. * fix(devx): fail loud on stale probes, align key derivation under symlinks Round-3 review findings on the prerequisite guard: - R3-1: a listed package whose manifest enumerates zero ./dist/ targets (require-only or nested-condition entries) passed the probe silently — report 'exposes no dist/ entry files to check (guard probe may be stale)' instead, so a stale probe cannot resurrect the raw resolution error this guard exists to replace. - R3-3: when SOME dist entry files exist, the missing one is no longer diagnosed as 'has not been built' + a plain npm-run-build prescription (a successful build can legitimately leave a stale exports entry); the message now says the build output is incomplete or exports points at a file the build does not emit, and to check the package's exports entries when rebuilding does not help. - Key derivation now realpaths both cwd and root (with a fallback to the raw path): repoRoot descends from import.meta.url, which Node resolves through symlinks, while vitest resolves root with a plain path.resolve — comparing them raw let a symlinked ancestor silently disable the guard. - R3-2: the channel drift-check character class now tolerates digits, underscores and dots per npm naming rules. - R3-4: renamed the test that claimed win32-separator coverage it never exercised; its body is the degenerate repo-root silent-yield path and the comment now says so. - R1-6 (partial): added default-export coverage — project.config.root extraction and the process.cwd() fallback, asserting no exit in a built repo. The exit-1 arm of the default export stays untested: it needs a root-injectable seam the entry point deliberately does not have; checkAndReport's return-1 and message remain covered directly. Tests: 21/21; mutation probes confirm the zero-enumeration and symlink tests catch their regressions. * fix(devx): hermetic guard tests, alias-aware probe, explicit gitlab build - drive the default-export tests against a hermetic fixture checkout via QWEN_VITEST_GUARD_ROOT (in-process and subprocess), so they hold on an unbuilt worktree instead of depending on the real repository state - skip dist targets the consumer aliases to TypeScript source when probing, so a missing-but-aliased dist file no longer blocks runs that would pass - make the remedy message context-aware: the git-commit hint appears only when a generated file is missing, and a stale-probe line gets its own note - add packages/channels/gitlab to buildOrder: it is a cli channel-registry builtin like its siblings and used to build only transitively - add drift tests pinning the globalSetup wiring in both vitest configs * fix(devx): ignore commented vitest aliases * fix(devx): anchor the vitest globalSetup guard to the config file R1-1: a relative globalSetup path is resolved against vitest's root (the process cwd without --root), not the config file's directory, so the prerequisite guard only loaded when vitest happened to run from inside the package. `npx vitest run --config packages/<pkg>/vitest.config.ts` from the repository root died with "Cannot find module .../vitest-global-setup.js" before any test — the cause-hiding failure class this guard replaces. Resolve it with path.resolve(__dirname, ...) in both packages/cli and packages/core configs, and update the wiring-sync assertion (now robust to prettier line-wrapping; flip-verified red when reverted to a bare string). --------- Co-authored-by: yiliang114 <yiliang114@users.noreply.github.com>
15 KiB
AGENTS.md
This file provides guidance to Qwen Code when working with code in this repository.
Working Principles
Simplicity First
Minimum code that solves the problem. Nothing speculative. (This is the principle we care about most.)
- No features beyond what was asked.
- No abstractions for single-use code.
- No "flexibility" or "configurability" that wasn't requested.
- No error handling for impossible scenarios.
- If you write 200 lines and it could be 50, rewrite it.
Ask yourself: "Would a senior engineer say this is overcomplicated?" If yes, simplify.
Adapted from Andrej Karpathy's CLAUDE.md.
Core Infrastructure Is Maintainer-Only (triage gate, two-tier rule)
Core modules — packages/core/src/**, packages/*/src/auth/**,
packages/*/src/providers/**, packages/*/src/models/**,
packages/*/src/config/**, packages/*/src/tools/**,
packages/*/src/services/**, cross-package changes — are the architectural
backbone. External PRs touching them face a two-tier gate (maintainer-authored
PRs are exempt):
- Large-scope
refactorchanges (500+ production logic lines in core, excluding test and generated/schema files) → hard block. Skip evaluation entirely — the maintainer exemption above is the sole exception. Large-scale core refactors must be maintainer-initiated. When counting lines, exclude files matching*.test.ts,*.test.tsx,*.spec.ts,*.spec.tsx,__tests__/**,*.schema.ts,*.schema.json,*.generated.ts, and**/generated/**— only production logic counts.feat-type and other non-refactorPRs are NOT hard-blocked on size; they escalate to the maintainer for awareness instead. A non-blocking advisory also applies at 1000+ production logic lines. Breadth alone is not size — a low-risk sweep that touches 10+ files but changes a line or two each is escalated to a maintainer for awareness and otherwise judged under Tier 2's 100%-confidence bar, not auto-rejected on file count. - Small-scope changes → gate may evaluate, but must be 100% confident. Any doubt at all → escalate to maintainer. "The direction looks correct" is not confidence. The gate must name every downstream consumer; if it cannot, escalate.
When in doubt, escalate. Better to wrongly escalate than to wrongly approve.
Common Commands
Building
npm install # Install all dependencies
npm run build # Build all packages (TypeScript compilation + asset copying)
npm run build:all # Build everything including sandbox container
npm run bundle # Bundle dist/ into a single dist/cli.js via esbuild
# (requires build first)
npm run build compiles TS into each package's dist/. npm run bundle
takes that output and produces a single dist/cli.js via esbuild. Bundle
requires build to have run first.
Development
npm run dev # Run CLI directly from TypeScript source (no build needed)
Runs the CLI via tsx with DEV=true. Changes to packages/core or
packages/cli are reflected immediately without rebuilding.
Unit Testing
Tests must be run from within the specific package directory, not the project root.
Fresh clone or new worktree: packages/cli unit tests import workspace
packages (@qwen-code/acp-bridge, @qwen-code/web-templates,
packages/channels/*, ...) through their built dist/ output, and
packages/core tests import the package's own entry
(@qwen-code/qwen-code-core), which also resolves into dist/. A plain
npm ci already builds them via the prepare script, but a worktree that
shares the main checkout's node_modules (or a deep-cleaned copy) does not
have them. If any prerequisite is missing, a vitest globalSetup guard stops
the run and names the fix; build once from the repository root:
npm run build
Run individual test files (always preferred):
cd packages/core && npx vitest run src/path/to/file.test.ts
cd packages/cli && npx vitest run src/path/to/file.test.ts
Update snapshots:
cd packages/cli && npx vitest run src/path/to/file.test.ts --update
Avoid:
npm run test -- --filter=...— does NOT filter; runs the entire suitenpx vitestfrom the project root — fails due to package-specific vitest configs- Running the whole test suite unless necessary (e.g., final PR verification)
Test gotchas:
- In CLI tests, use
vi.hoisted()for mocks consumed byvi.mock()— the mock factory runs at module load time, before test execution.
Integration Testing
Build the bundle first: npm run build && npm run bundle
Run from the project root using the dedicated npm scripts:
npm run test:integration:cli:sandbox:none
npm run test:integration:interactive:sandbox:none
Or combined in one command:
cd integration-tests && \
cross-env QWEN_SANDBOX=false npx vitest run cli interactive
Gotcha: In interactive tests, always call session.idle() between sends —
ANSI output streams asynchronously.
Linting & Formatting
npm run lint # ESLint check
npm run lint:fix # Auto-fix lint issues
npm run format # Prettier formatting
npm run typecheck # TypeScript type checking
npm run preflight # Full check: clean → install → format → lint → build
# → typecheck → test
Code Conventions
- Module system: ESM throughout (
"type": "module"in all packages) - TypeScript: Strict mode with
noImplicitAny,strictNullChecks,noUnusedLocals,verbatimModuleSyntax - Formatting: Prettier — single quotes, semicolons, trailing commas, 2-space indent, 80-char width
- Linting: No
anytypes, consistent type imports, no relative imports between packages - Tests: Collocated with source (
file.test.tsnext tofile.ts), vitest framework - File naming:
PascalCase.tsxfor React components,kebab-case.tsfor.tsfiles inpackages/coreandpackages/cli(enforced by ESLint). Existing camelCase files are allowlisted ineslint.legacy-filenames.mjs; rename opportunistically when touching them, updating all imports in the same commit (note: renames losegit blamehistory). - Comments: Default to none. Add only when why is non-obvious; don't delete existing ones as cleanup.
- Commits: Conventional Commits (e.g.,
feat(cli): Add --json flag) - Node.js: Development and production both require
>=22(Ink 7 + React 19.2 requirement)
Web Shell UI development
- Prefer the shared primitives in
packages/web-shell/client/components/uiwhen developing Web Shell UI. Do not duplicate an existing primitive or rewrite stable CSS Modules solely for consistency. - If a required primitive is missing, run
npx shadcn@latest add <component>frompackages/web-shell, then review the generated diff. Do not let the CLI overwrite the existing global CSS, semantic tokens, CSS scoping, or portal-root integration. Keep generated components internal unless a public package API is explicitly required. - Web Shell supports React 18 and React 19. Generated shadcn components often
assume React 19 ref semantics, so wrappers that accept or receive refs —
including Radix
asChild,Slot,Presence, and portal children — must useReact.forwardRefand pass the ref to the underlying DOM or Radix primitive. Add a regression test for any ref-sensitive component path. - Use unprefixed Tailwind classes and shadcn semantic color tokens such as
background,primary, andmuted. The package build scopes generated CSS to the Web Shell root and portal root and prefixes global animations and CSS property registrations; changes must preserve that isolation from host-page styles. - Components with portals, such as dialogs, popovers, dropdown menus, and
tooltips, must use
useWebShellPortalRoot()as the Radix portal container so themes, scoped CSS, and z-index variables continue to apply. Preserve existingdata-web-shell-*attributes and public--web-shell-*CSS variables. Seepackages/web-shell/README.mdfor the full conventions.
Development Guidelines
General workflow
- Design doc for non-trivial work — write one in
docs/design/if the change touches multiple files or involves design decisions. Skip for small bugfixes. - Test plan for behavioral changes — write an E2E test plan in
.qwen/e2e-tests/when the change affects user-observable behavior. Dry-run against the globalqwenCLI first to confirm the baseline. - Build, typecheck, and test before declaring done:
npm run build && npm run typecheck, plus unit tests for the files you changed. - Self-audit before declaring done — read the full diff you are about to ship, including new untracked files, in open-ended passes, not hunting for anything specific. Then verify each change, and each green test you rely on as evidence, presuming it wrong (a passing test can assert the wrong thing). Stop after two consecutive clean passes — a clean pass is evidence about that pass, not the code. A fix re-runs step 3, resets the clean-pass count, and gets a further pass over the updated diff — never exit on a pass that found something. If five passes bring no convergence, say so instead of declaring done. Scale to the diff: one clean, careful pass suffices for a trivial change.
Feature development
Use the /feat-dev skill for the full workflow: investigate, design, test plan,
dry-run, implement, verify, self-audit, code review, and iterate.
Bugfix
Use the /bugfix skill for the reproduce-first workflow: reproduce, fix,
verify, test, self-audit, and code review.
Code Review
Project-specific rules for /review. The skill loads this section verbatim (by
its ## Code Review heading) and hands it to every review agent, so keep it to
things a reviewer of this codebase must check — not general advice.
- Verify a finding against the exact reviewed commit before reporting it. Read the lines you are about to cite. A Critical that quotes code not present at the commit under review is worse than no finding — it blocks the author over nothing. Do not report a defect you have only inferred from a symbol name or a diff fragment.
- A
C=0/ APPROVE is a claim, not a default. Before submitting one, take each unresolved Critical already on the PR and check it against the code as it stands: still stands / fixed by this diff / cannot tell. A GitHub thread can readisResolved: false, isOutdated: falsefor a bug that a later commit fixed on an adjacent line — the flag tracks the anchored line, not the fix. - For every added field, option, or optional parameter, grep its read sites,
including outside the diff. A
foo?: booleanthat is declared and read but never set by any caller is a dead switch (options.foo ?? truealways takes the default). Decide severity at the read site; never explain an unpopulated field with author intent you cannot observe. - Classify every added or changed daemon route by ownership. Name whether it is process-global, legacy-primary, selected-runtime, live-session-owner, or persisted-workspace scoped, and verify every downstream consumer matches that scope.
- Verify workspace-scoped routes stay inside the resolved runtime. Check the environment, bridge, service, filesystem, trust boundary, and failure paths. Each unknown, untrusted, ambiguous, bootstrapping, draining, or removed state must follow its declared failure semantics and must never fall back to the primary runtime.
- Match the house style when judging. ESM only; no
any; no relative imports between packages;kebab-case.tsfor.tsinpackages/coreandpackages/cli,PascalCase.tsxfor React components; tests collocated asfile.test.ts. Comments default to none — flag a missing comment only where the why is genuinely non-obvious, and never fault a diff for deleting a comment that no longer applies. - A missing test for changed behavior is a Suggestion, not a Critical, unless the untested path is itself the defect.
GitHub Operations
Use the gh CLI for all GitHub-related operations — issues, pull requests,
comments, CI checks, releases, and API calls. Prefer gh issue view,
gh pr view, gh pr checks, gh run view, gh api, etc. over web fetches
or manual REST calls.
Testing, Debugging, and Bug Fixes
- Bug reproduction & verification: spawn the
test-engineeragent. It reads code and docs to understand the bug, then reproduces it via E2E testing (or a test-script fallback). It also handles post-fix verification. It cannot edit source code — only observe and report. - Hard bugs: use the
structured-debuggingskill when debugging requires more than a quick glance — especially when the first attempt at a fix didn't work or the behavior seems impossible. - E2E testing: the
e2e-testingskill covers headless mode, interactive (tmux) mode, MCP server testing, and API traffic inspection. Thetest-engineeragent invokes this skill internally — you typically don't need to use it directly.
Submitting PRs
When creating a PR, follow the template at .github/pull_request_template.md.
After the PR is submitted, post a separate comment with the E2E test report if
applicable.
- PR description: explain the motivation and changes in prose. Avoid referencing file names or function names.
- Reviewer Test Plan (template section): describe behaviors a reviewer should verify and what to expect, not scripted test commands. Use How to verify for reproduction steps; Before/After for TUI evidence when applicable.
- Line wrapping: do not hard-wrap the PR body at a fixed column width.
GitHub renders single newlines as
<br>, so a wrapped description displays as a narrow column. Write each paragraph or list item as one long line. - Don't let review rounds balloon the PR. Every accepted change widens the diff and tends to trigger another round, so a PR can drift far past its original intent. Once a PR has been through roughly 5 review rounds, land only Critical fixes — correctness, security, data loss, regressions — and defer remaining Suggestions to a follow-up issue or PR. Record each deferral in the PR thread so nothing is silently dropped.
Project Directories
Design docs and implementation plans are committed under docs/ so they are
tracked in version control:
| Directory | Purpose |
|---|---|
docs/design/ |
Design docs for planned features |
docs/plans/ |
Implementation plans |
Other working artifacts live under .qwen/ (git-ignored):
| Directory | Purpose |
|---|---|
.qwen/e2e-tests/ |
E2E test plans and results |
.qwen/issues/ |
Issue drafts before filing on GitHub |
.qwen/pr-drafts/ |
PR drafts before submitting |
.qwen/pr-reviews/ |
PR review notes |
.qwen/investigations/ |
Structured debugging journals |
.qwen/scripts/ |
Utility scripts |