@mk-kit/mcp 0.48.0 → 0.50.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 +1 -0
- package/data/api.json +216 -79
- package/data/llms-full.txt +54 -9
- package/data/llms.txt +1 -1
- package/index.js +26 -1
- package/package.json +1 -1
- package/scaffolds.js +368 -0
package/README.md
CHANGED
|
@@ -43,6 +43,7 @@ Runs over stdio; nothing to host. Node ≥ 20.
|
|
|
43
43
|
| `get_mk_kit_export` | Full API of one export as Markdown — import, selector, description + example, inputs, outputs, methods, docs link. Accepts class names or selectors. |
|
|
44
44
|
| `list_mk_kit_exports` | Browse every entry point, or one entry point / kind, with one-line summaries. |
|
|
45
45
|
| `get_mk_kit_overview` | What mk-kit is, install + setup conventions, links to every docs page (the site's `llms.txt`). |
|
|
46
|
+
| `scaffold_mk_kit` | Paste-ready, entity-aware code for the first patterns an app builds: `crud-schematic` (the `ng g @mk-kit/ui:crud` command), `table-page`, `dynamic-form`, `dialog`, `embed`. Takes `entity` and a `fields` spec (`"name!:string,price:currency,status:select=draft|published"`). |
|
|
46
47
|
|
|
47
48
|
Resources: `mk-kit://llms.txt`, `mk-kit://llms-full.txt`, `mk-kit://api.json`.
|
|
48
49
|
|