Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: CI

on:
push:
branches: [main]
branches: [dev]
pull_request:

concurrency:
Expand Down Expand Up @@ -38,6 +38,16 @@ jobs:
- name: Assert no derived data is tracked
run: npm run check-data-tracking

# `npm ci` above ran the postinstall linker, so this asserts the projection actually happened
# rather than re-doing it: both skill surfaces point at the installed package, and no skill
# byte is tracked here. An `--ignore-scripts` install resolves the dependency without linking
# anything, and this is what makes that state red instead of silently fine.
#
# No path filter, and no workflow of its own: a path-filtered workflow reports *pending* on
# PRs that miss the filter, which can never satisfy a required check.
- name: Assert the skill substrate is projected, not copied
run: npx --no-install neo-agent-skills-materialize --check

# `--project=unit` excludes `unit-profiling`. Those two specs read the real `users.jsonl`, which
# is gitignored and whose fetch skips under CI, and they assert wall-clock budgets that a shared
# runner can double — a regression report for something that did not regress.
Expand Down
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,9 @@ chroma-neo-memory-core/
# Playwright test results
test/playwright/test-results/
# Single-file Playwright runs via npx
test-results/
test-results/
# Skill substrate arrives as the neo-agent-skills npm dependency and is materialized by its
# postinstall linker as symlinks into node_modules. Both paths are projection, never committed
# bytes (neomjs/neo#17798).
.agents/skills
.claude/skills/
14 changes: 14 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"type": "module",
"scripts": {
"postinstall" : "node ./buildScripts/linkMarkedForWorkerScope.mjs && node ./buildScripts/pullDevIndexData.mjs",
"postinstall" : "node ./buildScripts/linkMarkedForWorkerScope.mjs && node ./buildScripts/pullDevIndexData.mjs && neo-agent-skills-materialize",
"add-config" : "node ./node_modules/neo.mjs/buildScripts/create/addConfig.mjs",
"build-all" : "node ./node_modules/neo.mjs/buildScripts/build/all.mjs -f -n",
"build-all-questions" : "node ./node_modules/neo.mjs/buildScripts/build/all.mjs -f",
Expand Down Expand Up @@ -59,6 +59,7 @@
"marked" : "^18.0.5",
"mermaid" : "^11.16.0",
"monaco-editor" : "0.50.0",
"neo-agent-skills" : "^0.1.1",
"parse5" : "^8.0.1",
"postcss" : "^8.5.16",
"sass" : "^1.101.0",
Expand Down
Loading