@spfn/core 0.2.0-beta.69 → 0.2.0-beta.70

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 (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -7,6 +7,12 @@ feature — an entity, a repository, a route, a router registration — so that
7
7
  nor your coding agent has to invent one per feature. Everything else in SPFN
8
8
  (`@spfn/auth`, `@spfn/mcp`, `@spfn/storage`, …) plugs into it.
9
9
 
10
+ Fixing the shape is an answer to [architecture drift](https://superfunction.xyz/architecture-drift)
11
+ — a codebase acquiring several structures because each feature was arranged freshly. The
12
+ usual answers detect it after the fact; this one leaves nothing to decide. It removes
13
+ drift that comes from structural choice, and nothing else: two services can still
14
+ implement the same rule differently inside a correct shape.
15
+
10
16
  📖 **[superfunction.xyz](https://superfunction.xyz)** — docs and the full-stack tutorial ·
11
17
  [repository README](https://github.com/fxylabs/spfn) for the whole framework.
12
18
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spfn/core",
3
- "version": "0.2.0-beta.69",
4
- "description": "SPFN Framework Core - File-based routing, transactions, repository pattern",
3
+ "version": "0.2.0-beta.70",
4
+ "description": "Full-stack TypeScript backend for Next.js: file-based typed routes, Drizzle entities and repositories, PostgreSQL transactions and a generated end-to-end client, in one fixed vertical slice per feature",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  "./client": {
@@ -165,9 +165,9 @@
165
165
  "redis",
166
166
  "hono",
167
167
  "fullstack",
168
- "server",
169
- "scalable",
170
- "auto-generated",
168
+ "full-stack-framework",
169
+ "ai-coding-agent",
170
+ "claude-code",
171
171
  "file-based-routing",
172
172
  "transaction",
173
173
  "repository-pattern"