create-edgebase 0.1.5 → 0.2.0

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 (3) hide show
  1. package/README.md +4 -0
  2. package/llms.txt +2 -0
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -56,6 +56,8 @@ npm create edgebase@latest my-app
56
56
 
57
57
  This package ships with an `llms.txt` file for AI-assisted scaffolding.
58
58
 
59
+ For the higher-level SDK and trust-boundary rules, start with the official [Use EdgeBase With AI](https://edgebase.fun/docs/getting-started/ai) guide and then read this package's `llms.txt` for scaffold-specific details.
60
+
59
61
  You can find it:
60
62
 
61
63
  - after install: `node_modules/create-edgebase/llms.txt`
@@ -115,9 +117,11 @@ Typical outputs include:
115
117
  - `functions/`
116
118
  - `package.json` with local EdgeBase dev dependencies and scripts
117
119
  - `.gitignore` entries for local secrets and generated files
120
+ - `AGENTS.md` and `.github/copilot-instructions.md` with EdgeBase-specific AI guidance
118
121
  - local runtime metadata under `.edgebase/` during development and deploy flows
119
122
 
120
123
  If the target directory already contains `package.json` or `.gitignore`, the scaffold merges EdgeBase-specific entries instead of blindly replacing the file.
124
+ If the target directory already contains `AGENTS.md` or `.github/copilot-instructions.md`, the scaffold preserves existing content and refreshes the managed EdgeBase guidance block.
121
125
 
122
126
  ## What Happens Next
123
127
 
package/llms.txt CHANGED
@@ -55,6 +55,8 @@ EDGEBASE_CREATE_SKIP_INSTALL=1 npm create edgebase@latest my-app -- --no-dev
55
55
  - starts `npm run dev` unless `--no-dev` is passed
56
56
  - forwards `--open` to the local development flow when requested
57
57
  - merges EdgeBase entries into existing `package.json` and `.gitignore` files instead of replacing them wholesale
58
+ - writes `AGENTS.md` and `.github/copilot-instructions.md` so AI tools can discover EdgeBase-specific guidance inside the generated project
59
+ - refreshes the managed EdgeBase guidance block if those AI hint files already exist
58
60
 
59
61
  ## Common Mistakes
60
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-edgebase",
3
- "version": "0.1.5",
3
+ "version": "0.2.0",
4
4
  "description": "Bootstrap a new EdgeBase project",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -31,6 +31,6 @@
31
31
  "node": ">=20.19.0"
32
32
  },
33
33
  "dependencies": {
34
- "@edge-base/cli": "0.1.5"
34
+ "@edge-base/cli": "0.2.0"
35
35
  }
36
36
  }