@omfalos/mokosh 0.1.8 → 0.1.10
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.
- package/README.md +1 -0
- package/dist/cli.js +30 -25
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +30 -25
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.mts +99 -5
- package/dist/index.d.ts +99 -5
- package/dist/index.js +15 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -15
- package/dist/index.mjs.map +1 -1
- package/dist/mcp.js +18 -18
- package/dist/mcp.js.map +1 -1
- package/dist/mcp.mjs +18 -18
- package/dist/mcp.mjs.map +1 -1
- package/package.json +1 -1
- package/templates/skill/SKILL.md +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omfalos/mokosh",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "A high-performance, AST-powered dependency graph generator for frontend projects, optimized for AI context and smart test selection.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
package/templates/skill/SKILL.md
CHANGED
|
@@ -43,6 +43,7 @@ If source files are edited mid-session, call `clear_cache({ root })` before re-q
|
|
|
43
43
|
| Tests affected by X | `get_affected({ root, file, testsOnly: true })` | `mokosh --affected-tests <file>` |
|
|
44
44
|
| Who **calls into** X at runtime? | `get_callers({ root, file, depth: 1, withEdgeDetail: true })` | `mokosh --callers <file>` |
|
|
45
45
|
| Callers/callees of a named function | `get_call_graph({ root, function: "name" })` | TS/JS only |
|
|
46
|
+
| Which file exports symbol X? | `find_symbol({ root, name: "X" })` | `mokosh <entry> --find-symbol --function X` |
|
|
46
47
|
| Unused files | `find_unused({ root, entryPoints: [...] })` | `mokosh --find-unused <entry>` |
|
|
47
48
|
| Circular dependencies | — | `mokosh <entry> --check-cycles` |
|
|
48
49
|
|