文件最后提交记录最后更新时间
fix(docs): clean some docs + disclaimer 2 个月前
refacto(truncations): Set global CAPS for truncation Following tee and hint refacto Add global CAP constant to be inherited , to enable easier global configuration later 16 天前
fix(automod): add auto discovery for cmds 2 个月前
refacto(truncations): Set global CAPS for truncation Following tee and hint refacto Add global CAP constant to be inherited , to enable easier global configuration later 16 天前
refactor(npx): consolidate npm/npx execution in npm_cmd Add npm_cmd::exec for npx and an internal run_filtered helper that both run (npm) and exec (npx) share. The helper resolves the command, applies args, honors SKIP_ENV_VALIDATION, and routes through runner::run_filtered with the npm output filter. The npx fallback in main.rs collapses to npm_cmd::exec(&args, cli.verbose, cli.skip_env)?. Per @KuSh review on #1458. 1 个月前
feat(stream): standardize command execution with exec_capture() 2 个月前
refacto(truncations): Set global CAPS for truncation Following tee and hint refacto Add global CAP constant to be inherited , to enable easier global configuration later 16 天前
refacto(truncations): Set global CAPS for truncation Following tee and hint refacto Add global CAP constant to be inherited , to enable easier global configuration later 16 天前
feat(stream): standardize command execution with exec_capture() 2 个月前
chore: fix clippy 0.1.95 warnings 26 天前
Merge remote-tracking branch 'origin/develop' into feat-hook-engine 1 个月前
README.md

JavaScript / TypeScript / Node

Part of src/cmds/ — see also docs/contributing/TECHNICAL.md

Specifics

  • utils::package_manager_exec() auto-detects pnpm/yarn/npm -- JS modules should use this instead of hardcoding a package manager
  • lint_cmd.rs is a cross-ecosystem router: detects Python projects and delegates to mypy_cmd or ruff_cmd
  • vitest_cmd.rs uses the parser/ module for structured output parsing
  • playwright_cmd.rs uses the parser/ module for test result extraction

Cross-command

  • lint_cmd routes to cmds/python/mypy_cmd and cmds/python/ruff_cmd for Python projects
  • prettier_cmd is also called by cmds/system/format_cmd as a format dispatcher target