code-foundry 0.27.2 → 0.27.4

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.
@@ -74,9 +74,6 @@ jobs:
74
74
  cache-lint: 'false'
75
75
  cache-build: 'false'
76
76
  task: format
77
- task-javascript: 'true'
78
- task-python: 'false'
79
- task-rust: 'false'
80
77
  - name: Format
81
78
  if: steps.applicability.outputs.applicable == 'true'
82
79
  run: node .code-foundry/src/runtime.mjs ci format
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.27.4](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.3...v0.27.4) (2026-07-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **runtime:** resolve Python tools from virtualenv ([788b1ae](https://github.com/0xPlayerOne/code-foundry/commit/788b1ae438451ee57ce55a8669d2710cb8755fcf))
9
+
10
+ ## [0.27.3](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.2...v0.27.3) (2026-07-28)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **ci:** auto-detect format tooling ([2be5228](https://github.com/0xPlayerOne/code-foundry/commit/2be522821b5d3f93b92ca5e2c4b20df345396fc3))
16
+
3
17
  ## [0.27.2](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.1...v0.27.2) (2026-07-28)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-foundry",
3
- "version": "0.27.2",
3
+ "version": "0.27.4",
4
4
  "description": "A fast, language-aware repository factory for agent-ready workflows, testing, security, and release automation.",
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0-or-later",
package/src/runtime.mjs CHANGED
@@ -82,6 +82,10 @@ function runScript(names) {
82
82
 
83
83
  /** @param {string} tool @param {string[]} [args] */
84
84
  function runTool(tool, args = []) {
85
+ if (['ruff', 'pytest', 'pylint'].includes(tool)) {
86
+ const venvTool = resolve(root, `.venv/bin/${tool}`)
87
+ if (existsSync(venvTool)) return run(venvTool, args)
88
+ }
85
89
  const [manager] = packageCommand([])
86
90
  if (manager === 'bun') return run('bunx', ['--no-install', tool, ...args])
87
91
  if (manager === 'pnpm') return run('pnpm', ['exec', tool, ...args])