layero 0.8.9 → 0.8.11

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 +11 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -14,6 +14,8 @@ npx layero deploy --json # ships current dir, streams JSON events to stdout
14
14
 
15
15
  `layero deploy` prints `{"event":"ready","url":"https://..."}` on success. Show the URL to the user. That's the whole job.
16
16
 
17
+ **If the user has no code yet** and wants a landing page built from scratch, this CLI is the wrong tool. Layero runs a remote MCP server for that — `https://mcp.layero.ru/mcp` (Streamable HTTP), registered as `ru.layero/layero` in the official MCP registry. It builds the page from a two-or-three-question brief and deploys it. Install it with `claude plugin marketplace add LayeroInfra/layero-claude && claude plugin install layero@layero-claude`, `codex mcp add layero --url https://mcp.layero.ru/mcp --transport http`, or one click in Cursor from [land.layero.ru](https://land.layero.ru). Details: [docs.layero.ru/en/plugin/intro](https://docs.layero.ru/en/plugin/intro).
18
+
17
19
  ## Install
18
20
 
19
21
  ```bash
@@ -149,6 +151,14 @@ uploaded (no source-tree filters like `.gitignore` apply). The platform
149
151
  ships them verbatim — no detect, no install, no build. Smaller archive,
150
152
  faster deploys, no surprises from the platform's package-manager defaults.
151
153
 
154
+ ⚠️ The flip side of ignoring `.gitignore`: `--prebuilt .` at your project
155
+ root publishes **everything there** except the built-in denylist, including
156
+ drafts you hid via `.gitignore` (verified on a live deploy — such a file comes
157
+ back with a 200). Secrets are still safe: `.env`, `.env.*`, `.git`,
158
+ `node_modules` and the rule files are excluded on this path too, nested
159
+ directories included. Even so, name the directory explicitly rather than
160
+ using `.`.
161
+
152
162
  Override anything by editing `.layero/project.json` after the first `layero init`.
153
163
 
154
164
  ## In CI
@@ -257,3 +267,4 @@ you chose to hide. Maximum archive size is 200 MB.
257
267
  - Website: https://layero.ru
258
268
  - Docs: https://docs.layero.ru
259
269
  - Support: https://docs.layero.ru/contacts/
270
+ - MCP server / IDE plugin: https://docs.layero.ru/en/plugin/intro
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "layero",
3
- "version": "0.8.9",
4
- "description": "Layero CLI publish a local site with one command. No git, no GitHub, agent-friendly (Cursor, Claude Code).",
3
+ "version": "0.8.11",
4
+ "description": "Layero CLI \u2014 publish a local site with one command. No git, no GitHub, agent-friendly (Cursor, Claude Code).",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "homepage": "https://layero.ru",