@omfalos/mokosh 0.2.0 → 0.3.0
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 +4 -1
- package/dist/cli.js +27 -26
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +27 -26
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.mts +11 -7
- package/dist/index.d.ts +11 -7
- package/dist/index.js +20 -19
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -19
- package/dist/index.mjs.map +1 -1
- package/dist/mcp.js +20 -19
- package/dist/mcp.js.map +1 -1
- package/dist/mcp.mjs +20 -19
- package/dist/mcp.mjs.map +1 -1
- package/dist/parse-worker.js +2 -1
- package/dist/parse-worker.js.map +1 -1
- package/dist/parse-worker.mjs +2 -1
- package/dist/parse-worker.mjs.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -160,7 +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
|
|
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/Go/Python (coverage differs per language, see [ADR-011](./docs/adr-011-go-python-call-edges.md)), whole-file dependents otherwise.
|
|
164
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`.
|
|
165
165
|
- `--query-help`: Print the full query filter reference and examples.
|
|
166
166
|
- `--silent`: Suppress progress output on stderr.
|
|
@@ -257,3 +257,6 @@ For detailed information on each process, check the following guides:
|
|
|
257
257
|
- [ADR-006: Responsibility Graph — Semantic Role Assignment](./docs/adr-006-responsibility-graph.md)
|
|
258
258
|
- [ADR-007: Go Import Resolution](./docs/adr-007-go-resolution.md)
|
|
259
259
|
- [ADR-008: Tag Applier Strategy Architecture](./docs/adr-008-tag-applier-strategies.md)
|
|
260
|
+
- [ADR-009: AST Library for Markdown Parsing](./docs/adr-009-markdown-parsing.md)
|
|
261
|
+
- [ADR-010: Worker-Pool Parallel Parsing](./docs/adr-010-parallel-parsing.md)
|
|
262
|
+
- [ADR-011: Extending Complexity and Call Edges to Go and Python](./docs/adr-011-go-python-call-edges.md)
|