code-foundry 0.27.11 → 0.27.13

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.
@@ -99,6 +99,8 @@ jobs:
99
99
 
100
100
  dependency-audit-javascript:
101
101
  name: Dependency Audit (JavaScript)
102
+ needs: profile
103
+ if: ${{ needs.profile.result == 'success' && needs.profile.outputs.javascript == 'true' }}
102
104
  runs-on: ${{ inputs.runner }}
103
105
  timeout-minutes: 20
104
106
  steps:
@@ -149,6 +151,8 @@ jobs:
149
151
 
150
152
  dependency-audit-rust:
151
153
  name: Dependency Audit (Rust)
154
+ needs: profile
155
+ if: ${{ needs.profile.result == 'success' && needs.profile.outputs.rust == 'true' }}
152
156
  runs-on: ${{ inputs.runner }}
153
157
  timeout-minutes: 20
154
158
  steps:
@@ -269,7 +273,11 @@ jobs:
269
273
  dependency-audit-python-gate:
270
274
  name: Dependency Audit (Python)
271
275
  needs: [profile, dependency-audit-python]
272
- if: always()
276
+ if: >-
277
+ ${{ always() &&
278
+ needs.profile.result == 'success' &&
279
+ needs.profile.outputs.python == 'true' &&
280
+ needs.profile.outputs.python_requirements != '["none"]' }}
273
281
  runs-on: ${{ inputs.runner }}
274
282
  timeout-minutes: 5
275
283
  steps:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.27.13](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.12...v0.27.13) (2026-07-29)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **sync:** package the gitignore template ([e65c63d](https://github.com/0xPlayerOne/code-foundry/commit/e65c63dcb09a623d5ce0b55f734bbe73719c72f2))
9
+
10
+ ## [0.27.12](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.11...v0.27.12) (2026-07-29)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **security:** skip irrelevant dependency audits ([cc206d4](https://github.com/0xPlayerOne/code-foundry/commit/cc206d4dea5311684b79ef3a04669aa7ce74421a))
16
+
3
17
  ## [0.27.11](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.10...v0.27.11) (2026-07-29)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-foundry",
3
- "version": "0.27.11",
3
+ "version": "0.27.13",
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",
@@ -144,6 +144,10 @@ function shouldInclude(file, languages, features) {
144
144
 
145
145
  /** @param {string} source @param {string} file */
146
146
  function sourcePath(source, file) {
147
+ if (file === '.gitignore') {
148
+ const rootTemplate = join(source, file)
149
+ return existsSync(rootTemplate) ? rootTemplate : join(source, 'src/templates/gitignore')
150
+ }
147
151
  if (file.startsWith('.github/workflows/')) {
148
152
  const name = file.slice('.github/workflows/'.length, -4)
149
153
  return join(source, '.github/workflows', `${name}_self-ci.yml`)
@@ -0,0 +1,77 @@
1
+ # Operating system
2
+ .DS_Store
3
+ Thumbs.db
4
+ .Trashes
5
+
6
+ # Secrets and local environment
7
+ .env
8
+ .env.*
9
+ !.env.example
10
+ *.pem
11
+ *.key
12
+
13
+ # JavaScript and TypeScript
14
+ node_modules/
15
+ .pnp/
16
+ .pnp.js
17
+ .turbo/
18
+ *.tsbuildinfo
19
+ next-env.d.ts
20
+
21
+ # Python
22
+ .venv/
23
+ venv/
24
+ __pycache__/
25
+ *.py[cod]
26
+ .pytest_cache/
27
+ .ruff_cache/
28
+ .mypy_cache/
29
+
30
+ # Rust
31
+ target/
32
+
33
+ # Build and test output
34
+ dist/
35
+ build/
36
+ out/
37
+ coverage/
38
+ htmlcov/
39
+ .coverage*
40
+ .next/
41
+ artifacts/
42
+ cache/
43
+ !.github/actions/cache/
44
+ !.github/actions/cache/action.yml
45
+ typechain/
46
+ coverage.json
47
+ tests/.bin/
48
+ **/.app/
49
+
50
+ # Logs and temporary files
51
+ *.log
52
+ *.tmp
53
+ *.pid
54
+ npm-debug.log*
55
+ yarn-debug.log*
56
+ pnpm-debug.log*
57
+
58
+ # Editors, agents, and local tools
59
+ .claude/
60
+ .kilo/
61
+ .codex/
62
+ .cursor/
63
+ .windsurf/
64
+ .vscode/
65
+ .idea/
66
+ .zed/
67
+ .fleet/
68
+ .opencode/
69
+ .kluster/
70
+ .direnv/
71
+ .envrc
72
+ .vercel/
73
+ mise.local.toml
74
+ .mise.local.toml
75
+ mise.local.lock
76
+ .mise.local.lock
77
+ *.code-workspace