@appweaver/cli 1.0.4 → 1.0.6
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 +24 -15
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,30 +1,39 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://appweaver.co" target="_blank"><img src="https://raw.githubusercontent.com/lmatosevic/appweaver/refs/heads/main/resources/appweaver-logo.svg" width="460" alt="Appweaver Logo" /></a>
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-

|
|
5
|
+
<p align="center">
|
|
6
|
+
The AI-first <a href="https://nodejs.org" target="_blank">Node.js</a> framework for quick scaffolding, extending, and shipping backends with any agent.
|
|
7
|
+
</p>
|
|
7
8
|
|
|
8
|
-
>
|
|
9
|
+
<p align="center">
|
|
10
|
+
<a href="https://www.npmjs.com/@appweaver/cli" target="_blank"><img src="https://img.shields.io/npm/v/@appweaver/cli.svg" alt="NPM Version" /></a>
|
|
11
|
+
<a href="https://github.com/lmatosevic/appweaver/blob/master/LICENSE" target="_blank"><img src="https://img.shields.io/npm/l/@appweaver/cli.svg" alt="Package License" /></a>
|
|
12
|
+
<a href="https://www.npmjs.com/@appweaver/cli" target="_blank"><img src="https://img.shields.io/npm/dw/@appweaver/cli.svg" alt="NPM Downloads" /></a>
|
|
13
|
+
<a href="https://www.npmjs.com/@appweaver/cli" target="_blank"><img src="https://img.shields.io/badge/build-passing-brightgreen.svg" alt="Build Status" /></a>
|
|
9
14
|
|
|
10
|
-
|
|
11
|
-
be developed with AI agents. Instead of writing backend boilerplate from scratch, you describe resources using concise
|
|
12
|
-
factory functions and let the framework handle routing, validation, database, auth, migrations, so you can focus
|
|
13
|
-
on business logic instead of boilerplate.
|
|
15
|
+
</p>
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
## Description
|
|
18
|
+
|
|
19
|
+
Appweaver is a batteries-included framework built on top of [Fastify](https://fastify.dev) and
|
|
20
|
+
[Prisma](https://prisma.io), designed from the ground up to be developed with AI agents. Instead of writing backend
|
|
21
|
+
boilerplate from scratch, you describe resources using concise factory functions and let the framework handle routing,
|
|
22
|
+
validation, database, auth, migrations, so you can focus on business logic instead of boilerplate.
|
|
23
|
+
|
|
24
|
+
### Built for agents
|
|
16
25
|
|
|
17
26
|
- **80% fewer tokens** → Appweaver's conventions and factory API eliminate the boilerplate that dominates most backend
|
|
18
27
|
codebases. Your agent reads and writes only the code that matters, not hundreds of lines of scaffolding.
|
|
19
|
-
- **Zero-code configuration** → every framework behavior like server, database, auth, queues, mailer,
|
|
20
|
-
controlled through `appweaver.json` config files or environment variables. No code changes are needed to
|
|
21
|
-
the app for a different environment.
|
|
28
|
+
- **Zero-code configuration** → every framework behavior like HTTP server, database, auth, queues, mailer, cache,
|
|
29
|
+
storage is controlled through `appweaver.json` config files or environment variables. No code changes are needed to
|
|
30
|
+
reconfigure the app for a different environment.
|
|
22
31
|
- **Agent-first conventions** → a consistent, predictable project structure means agents always know where to find and
|
|
23
32
|
place code: models, services, routes, and policies each live in their own file under `src/resources/<name>/`.
|
|
24
33
|
- **Built-in skill files** → every scaffolded project ships with agent-readable skill files that give your agent harness
|
|
25
34
|
a complete map of the framework's API, conventions, and CLI, which means no hallucination, and no trial-and-error.
|
|
26
35
|
- **Works with any agent harness** → Claude Code, Cursor, Codex, Copilot Workspace, or any coding assistant that can
|
|
27
|
-
read project files. Point your agent at the skill files, and it has everything it needs.
|
|
36
|
+
read project files. Point your agent at the skill files, and it has everything it needs to quickly build applications.
|
|
28
37
|
|
|
29
38
|
## License
|
|
30
39
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appweaver/cli",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Appweaver - the backend framework for AI-
|
|
3
|
+
"version": "1.0.6",
|
|
4
|
+
"description": "Appweaver - the backend framework for AI-first development (@cli)",
|
|
5
5
|
"author": "Luka Matosevic",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "./weaver.js",
|