kozou 0.0.2

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +30 -0
  3. package/package.json +29 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Takashi Matsuyama
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # kozou
2
+
3
+ PostgreSQL compiler. One source, many faithful forms.
4
+
5
+ Kozou reads a PostgreSQL schema once and produces every form a modern team and its AI need from it — admin UI, MCP context, TypeScript types, GraphQL endpoints, and documentation. No duplicate definitions. No drift.
6
+
7
+ ## Status
8
+
9
+ Pre-release (v0.0.x). Core architecture and public API are being designed. Source code and documentation will land in this package as development proceeds.
10
+
11
+ ## Roadmap
12
+
13
+ - v0.1: schema reader (DDL + comments + constraints)
14
+ - v0.2: TypeScript type emitter
15
+ - v0.3: MCP context emitter
16
+ - v0.4: admin UI scaffolder
17
+ - v0.5: GraphQL endpoint emitter
18
+ - v0.6: documentation emitter
19
+
20
+ ## Name
21
+
22
+ **Kozou** carries three meanings in three syllables:
23
+
24
+ - **子象** (*kozō*) — the young elephant; the calf walking beside PostgreSQL's mascot Slonik
25
+ - **構造** (*kōzō*) — structure; the structural transformation a compiler performs
26
+ - **小僧** (*kozō*) — the apprentice; the quiet figure who serves something larger than itself
27
+
28
+ ## License
29
+
30
+ MIT
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "kozou",
3
+ "version": "0.0.2",
4
+ "description": "PostgreSQL compiler. Generates admin UI, MCP context, TypeScript types, GraphQL endpoints, and docs from a single schema.",
5
+ "keywords": [
6
+ "postgresql",
7
+ "postgres",
8
+ "compiler",
9
+ "schema",
10
+ "code-generation",
11
+ "mcp",
12
+ "admin-ui",
13
+ "typescript",
14
+ "graphql"
15
+ ],
16
+ "homepage": "https://kozou.org",
17
+ "bugs": {
18
+ "url": "https://github.com/kozou-dev/kozou/issues"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/kozou-dev/kozou.git"
23
+ },
24
+ "license": "MIT",
25
+ "author": "Takashi Matsuyama",
26
+ "files": [
27
+ "README.md"
28
+ ]
29
+ }