mikoshi-construct 0.3.0 → 0.3.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 +2 -4
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
Bootstrap for AI-native software projects. Start with a proven engineering workflow instead of an
|
|
4
4
|
empty repository.
|
|
5
5
|
|
|
6
|
+
**[Documentation](https://e1i.github.io/mikoshi-construct/)** · [Getting started](https://e1i.github.io/mikoshi-construct/guide/getting-started) · [The development cycle](https://e1i.github.io/mikoshi-construct/guide/the-cycle) · [CLI reference](https://e1i.github.io/mikoshi-construct/cli)
|
|
7
|
+
|
|
6
8
|
```bash
|
|
7
9
|
mkdir my-service && cd my-service
|
|
8
10
|
npx mikoshi-construct init # interactive: preset, agent, project name
|
|
@@ -13,10 +15,6 @@ pnpm install && pnpm run quality # green before you write a line
|
|
|
13
15
|
> the full lifecycle; Cursor gets the rules, the conventions and the discovery protocol.
|
|
14
16
|
> `construct sync` moves a repository already carrying a construct onto newer templates.
|
|
15
17
|
|
|
16
|
-
**Documentation — [e1i.github.io/mikoshi-construct](https://e1i.github.io/mikoshi-construct/)**:
|
|
17
|
-
getting started, [the development cycle](https://e1i.github.io/mikoshi-construct/guide/the-cycle),
|
|
18
|
-
the reasoning budget, [upgrading](https://e1i.github.io/mikoshi-construct/guide/upgrading) and the
|
|
19
|
-
CLI reference.
|
|
20
18
|
|
|
21
19
|
## What it does
|
|
22
20
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mikoshi-construct",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.1",
|
|
5
5
|
"description": "Bootstrap for AI-native software projects. Start with a proven engineering workflow instead of an empty repository.",
|
|
6
6
|
"author": "Eli Tabrisov",
|
|
7
7
|
"license": "MIT",
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"privacy:check": "tsx scripts/privacy/check.ts",
|
|
69
69
|
"quality": "pnpm composition:check && pnpm privacy:check && pnpm lint && pnpm typecheck && pnpm test",
|
|
70
70
|
"release": "pnpm build && changeset publish",
|
|
71
|
+
"release:verify": "tsx scripts/release/verify-published.ts",
|
|
71
72
|
"test": "vitest run",
|
|
72
73
|
"test:watch": "vitest",
|
|
73
74
|
"typecheck": "tsc --noEmit",
|