@appweaver/cli 1.0.4 → 1.0.5

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 +20 -11
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,30 +1,39 @@
1
- # Appweaver - CLI
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
- ![npm](https://img.shields.io/npm/v/@appweaver/cli)
4
- ![NPM License](https://img.shields.io/npm/l/@appweaver/cli)
5
- ![npm](https://img.shields.io/npm/dw/@appweaver/cli)
6
- ![npm](https://img.shields.io/badge/build-passing-brightgreen)
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 APIs with any agent.
7
+ </p>
7
8
 
8
- > The backend framework for AI-assisted development. Scaffold, extend, and ship APIs with any agent.
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>
14
+
15
+ </p>
16
+
17
+ ## Description
9
18
 
10
19
  Appweaver is a batteries-included framework built on top of **Fastify** and **Prisma**, designed from the ground up to
11
20
  be developed with AI agents. Instead of writing backend boilerplate from scratch, you describe resources using concise
12
21
  factory functions and let the framework handle routing, validation, database, auth, migrations, so you can focus
13
22
  on business logic instead of boilerplate.
14
23
 
15
- ### Why Appweaver for agentic development?
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, storage is
20
- controlled through `appweaver.json` config files or environment variables. No code changes are needed to reconfigure
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@appweaver/cli",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Appweaver - the backend framework for AI-assisted development (@cli)",
5
5
  "author": "Luka Matosevic",
6
6
  "license": "MIT",