create-contextkit 0.3.3 → 0.3.4

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 +41 -0
  3. package/package.json +18 -8
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Eric Kittelson
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,41 @@
1
+ # create-contextkit
2
+
3
+ Project scaffolder for [ContextKit](https://github.com/erickittelson/ContextKit) — AI-ready metadata governance over OSI.
4
+
5
+ ## Usage
6
+
7
+ ```bash
8
+ # Create a new ContextKit project
9
+ npx create-contextkit my-project
10
+ cd my-project
11
+
12
+ # Start working
13
+ context lint
14
+ context tier
15
+ context build
16
+ ```
17
+
18
+ ## What it creates
19
+
20
+ ```
21
+ my-project/
22
+ ├── context/
23
+ │ ├── models/ # OSI semantic models
24
+ │ ├── governance/ # Ownership, trust, security, semantic roles
25
+ │ ├── rules/ # Golden queries, business rules, guardrails
26
+ │ ├── lineage/ # Upstream/downstream lineage
27
+ │ ├── glossary/ # Business term definitions
28
+ │ └── owners/ # Team ownership records
29
+ ├── contextkit.config.yaml
30
+ └── package.json
31
+ ```
32
+
33
+ Includes example files to get started. Run `context setup` after scaffolding to connect a database and auto-generate metadata.
34
+
35
+ ## Part of ContextKit
36
+
37
+ See the [ContextKit repository](https://github.com/erickittelson/ContextKit) for full documentation.
38
+
39
+ ## License
40
+
41
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-contextkit",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Scaffold a new ContextKit project",
5
5
  "license": "MIT",
6
6
  "author": "Eric Kittelson",
@@ -10,17 +10,27 @@
10
10
  "url": "https://github.com/erickittelson/ContextKit.git",
11
11
  "directory": "create-contextkit"
12
12
  },
13
- "keywords": ["contextkit", "scaffolder", "create", "init"],
13
+ "keywords": [
14
+ "contextkit",
15
+ "scaffolder",
16
+ "create",
17
+ "init"
18
+ ],
14
19
  "type": "module",
15
- "bin": { "create-contextkit": "./dist/index.js" },
16
- "files": ["dist", "templates"],
17
- "scripts": {
18
- "build": "tsup",
19
- "clean": "rm -rf dist"
20
+ "bin": {
21
+ "create-contextkit": "./dist/index.js"
20
22
  },
23
+ "files": [
24
+ "dist",
25
+ "templates"
26
+ ],
21
27
  "devDependencies": {
22
28
  "@types/node": "^25.3.3",
23
29
  "tsup": "^8.4.0",
24
30
  "typescript": "^5.7.0"
31
+ },
32
+ "scripts": {
33
+ "build": "tsup",
34
+ "clean": "rm -rf dist"
25
35
  }
26
- }
36
+ }