manifest 4.16.0 → 4.16.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 +32 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://manifest.build/#gh-light-mode-only">
|
|
3
|
+
<img alt="manifest" src="https://manifest.build/assets/images/logo-transparent.svg" height="55px" alt="Manifest logo" title="Manifest - The backend for AI code editors" />
|
|
4
|
+
</a>
|
|
5
|
+
<a href="https://manifest.build/#gh-dark-mode-only">
|
|
6
|
+
<img alt="manifest" src="https://manifest.build/assets/images/logo-light.svg" height="55px" alt="Manifest logo" title="Manifest - The backend for AI code editors" />
|
|
7
|
+
</a>
|
|
8
|
+
</p>
|
|
9
|
+
|
|
10
|
+
<p align='center'>
|
|
11
|
+
<strong>The backend for AI code editors</strong>
|
|
12
|
+
<br><br>
|
|
13
|
+
<a href="https://www.npmjs.com/package/manifest" target="_blank"><img alt="npm download" src="https://img.shields.io/npm/dt/manifest.svg"></a>
|
|
14
|
+
<a href="https://www.npmjs.com/package/manifest" target="_blank"><img alt="npm" src="https://img.shields.io/npm/v/manifest"></a>
|
|
15
|
+
<a href="https://www.codefactor.io/repository/github/mnfst/manifest" target="_blank"><img alt="CodeFactor Grade" src="https://img.shields.io/codefactor/grade/github/mnfst/manifest"></a>
|
|
16
|
+
<a href="https://github.com/mnfst/manifest/blob/master/.github/workflows/ci-cd.yml"><img alt="CI-CD Status badge" src="https://github.com/mnfst/manifest/actions/workflows/ci-cd.yml/badge.svg"></a>
|
|
17
|
+
<a href="https://discord.com/invite/FepAked3W7" target="_blank"><img alt="Discord" src="https://img.shields.io/discord/1089907785178812499?label=discord"></a>
|
|
18
|
+
<a href="https://opencollective.com/mnfst" target="_blank"><img src="https://img.shields.io/badge/Support%20us-Open%20Collective-41B883.svg" alt="Support us"></a>
|
|
19
|
+
<a href="https://codecov.io/gh/mnfst/manifest" ><img src="https://codecov.io/gh/mnfst/manifest/graph/badge.svg?token=9URG40MEWY"/></a>
|
|
20
|
+
<a href="https://github.com/mnfst/manifest/blob/develop/LICENSE" target="_blank"><img alt="License MIT" src="https://img.shields.io/badge/licence-MIT-green"></a>
|
|
21
|
+
<a href="https://www.jsdelivr.com/package/npm/manifest" target="_blank"><img alt="jsdelivr" src="https://data.jsdelivr.com/v1/package/npm/manifest/badge"></a>
|
|
22
|
+
<br>
|
|
23
|
+
|
|
24
|
+
</p>
|
|
1
25
|
[Manifest](https://manifest.build) is a **backend** your AI can understand and your team can trust.
|
|
2
26
|
|
|
3
27
|
It allows you to create a backend with data, storage, logic and an admin panel. All is defined in **1 YAML file** that both humans and LLMs can understand and edit. ✨
|
|
@@ -31,29 +55,17 @@ entities:
|
|
|
31
55
|
Create a new Manifest project by running:
|
|
32
56
|
|
|
33
57
|
```bash
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Using an AI coding editor or LLM-powered workflow? These commands configure your project to work seamlessly with it:
|
|
38
|
-
|
|
39
|
-
##### Cursor
|
|
40
|
-
|
|
41
|
-
```bash
|
|
42
|
-
yarn create manifest my-project --cursor
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
##### Copilot
|
|
58
|
+
# NPM
|
|
59
|
+
npx create manifest@latest
|
|
46
60
|
|
|
47
|
-
|
|
48
|
-
yarn create manifest
|
|
61
|
+
# Yarn
|
|
62
|
+
yarn create manifest
|
|
49
63
|
```
|
|
50
64
|
|
|
51
|
-
|
|
65
|
+
Using an AI coding editor or LLM-powered workflow? These commands configure your project to work seamlessly with it:
|
|
52
66
|
|
|
53
67
|
```bash
|
|
54
|
-
yarn create manifest
|
|
68
|
+
yarn create manifest --cursor # Installs Cursor IDE rules
|
|
69
|
+
yarn create manifest --copilot # Installs Copilot rules
|
|
70
|
+
yarn create manifest --windsurf # Install Windsurf rules
|
|
55
71
|
```
|
|
56
|
-
|
|
57
|
-
This sets up my-project with Manifest, tailored to your environment.
|
|
58
|
-
|
|
59
|
-
`npm create` also works if you don’t use Yarn.
|