From d8df7105739759ff22a7b579514996cf0bc074cd Mon Sep 17 00:00:00 2001 From: Alex Dunmow Date: Sun, 5 Jul 2026 02:49:31 +0800 Subject: [PATCH] chore: register @ninja/smartblock scope and ignore pnpm-workspace.yaml - plugin.mod: scope normalized to @ninja and category set to the valid "developer" taxonomy entry (via ninja plugin init against the dev registry). - .gitignore: ignore web/pnpm-workspace.yaml (pnpm-generated allowBuilds file). Co-Authored-By: Claude Fable 5 --- .gitignore | 1 + plugin.mod | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4554d39..03e10b6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.bnp *.wasm /web/node_modules/ +/web/pnpm-workspace.yaml diff --git a/plugin.mod b/plugin.mod index 2e0a48b..c6410d3 100644 --- a/plugin.mod +++ b/plugin.mod @@ -1,9 +1,9 @@ [plugin] name = "smartblock" display_name = "Smart Block" -scope = "ninja" +scope = "@ninja" version = "1.0.0" description = "AI-powered block that generates custom content structures from natural-language prompts and renders them by substituting {{field}} placeholders." kind = "plugin" -categories = ["content"] +categories = ["developer"] tags = ["ai", "content", "blocks", "generative"]