spfn 0.2.0-beta.66 → 0.2.0-beta.67
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 +5 -0
- package/dist/index.js +1 -1
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -5,6 +5,11 @@ architecture. It can scaffold either a core-only backend or a production baselin
|
|
|
5
5
|
authentication, internationalization, and an agent-facing MCP endpoint, then runs the
|
|
6
6
|
dev/build/start lifecycle, database tooling, RPC codegen, and environment validation.
|
|
7
7
|
|
|
8
|
+
Consistent is the point rather than a nicety: what it scaffolds is one fixed shape per
|
|
9
|
+
feature, so a coding agent has no architecture left to invent and the codebase does not
|
|
10
|
+
acquire several. That problem has a name —
|
|
11
|
+
[architecture drift](https://superfunction.xyz/architecture-drift).
|
|
12
|
+
|
|
8
13
|
> Beta: install with the `@beta` tag (`spfn@beta`). The binary is `spfn`.
|
|
9
14
|
|
|
10
15
|
## Install
|
package/dist/index.js
CHANGED
|
@@ -922,7 +922,7 @@ var init_deployment_config = __esm({
|
|
|
922
922
|
|
|
923
923
|
// src/utils/version.ts
|
|
924
924
|
function getCliVersion() {
|
|
925
|
-
return "0.2.0-beta.
|
|
925
|
+
return "0.2.0-beta.67";
|
|
926
926
|
}
|
|
927
927
|
function getTagFromVersion(version) {
|
|
928
928
|
const match = version.match(/-([a-z]+)\./i);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spfn",
|
|
3
|
-
"version": "0.2.0-beta.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.0-beta.67",
|
|
4
|
+
"description": "Scaffold a full-stack TypeScript backend onto a Next.js app built with an AI coding agent: auth, database, typed routes and codegen, one fixed vertical slice per feature",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"spfn": "bin/spfn.js"
|
|
@@ -32,10 +32,11 @@
|
|
|
32
32
|
"scaffolding",
|
|
33
33
|
"boilerplate",
|
|
34
34
|
"dev-tools",
|
|
35
|
-
"development",
|
|
36
|
-
"init",
|
|
37
35
|
"typescript",
|
|
38
|
-
"type-safe"
|
|
36
|
+
"type-safe",
|
|
37
|
+
"full-stack-framework",
|
|
38
|
+
"ai-coding-agent",
|
|
39
|
+
"claude-code"
|
|
39
40
|
],
|
|
40
41
|
"author": "Ray Im <rayim@fxy.global>",
|
|
41
42
|
"license": "MIT",
|