@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/README.md
CHANGED
|
@@ -160,6 +160,7 @@ npx @omfalos/mokosh --query "category:logic,tag:auth" src/index.ts
|
|
|
160
160
|
- `--find-uncovered`: List non-test files whose line coverage is below the configured threshold (requires `coverageReportPath` in `mokosh.config.*`). Use `--feature-threshold` to override the default 80 % threshold.
|
|
161
161
|
- `--callers`: List files whose exported functions call into a given file. Requires `--file <path>`. More precise than `--find-unused` because it uses call edges rather than import edges.
|
|
162
162
|
- `--file <path>`: Target file for `--callers`.
|
|
163
|
+
- `--find-symbol`: Find every file that exports a symbol by exact name. Requires `--function <name>`. Precision varies by language: call-edge callers for TS/JS, named-import tracking for Python, whole-file dependents otherwise.
|
|
163
164
|
- `--query <query>`: Filter the output graph using a query string. Supported keys: `path`, `type`, `category`, `tag`, `external`, `importsFile`, `importedBy`, `minImports`, `maxImports`, `minSize`, `maxSize`, `hasDocstring`, `sort`, `limit`. Example: `category:logic,hasDocstring:false`.
|
|
164
165
|
- `--query-help`: Print the full query filter reference and examples.
|
|
165
166
|
- `--silent`: Suppress progress output on stderr.
|