notionbench 0.0.1
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 +7 -0
- package/bin/cli.js +4 -0
- package/package.json +10 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# notionbench (pre-release placeholder)
|
|
2
|
+
|
|
3
|
+
Open benchmark measuring how well AI coding agents build on Notion's developer
|
|
4
|
+
platform — the `ntn` CLI, Workers, and Notion-as-Code. Deterministic verification,
|
|
5
|
+
no LLM judges.
|
|
6
|
+
|
|
7
|
+
The real CLI ships here soon. Follow along: https://github.com/rishabhsai/notionbench
|
package/bin/cli.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "notionbench",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Open benchmark: how well do AI coding agents build on Notion's developer platform (ntn CLI, Workers, Notion-as-Code)? Pre-release placeholder — CLI coming soon.",
|
|
5
|
+
"bin": { "notionbench": "bin/cli.js" },
|
|
6
|
+
"repository": { "type": "git", "url": "git+https://github.com/rishabhsai/notionbench.git" },
|
|
7
|
+
"homepage": "https://github.com/rishabhsai/notionbench",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"keywords": ["notion", "benchmark", "evals", "ai-agents", "notion-as-code", "ntn"]
|
|
10
|
+
}
|