| name | tinycloud-app-authoring |
| description | Author TinyCloud app manifests and concise agent-readable knowledge bundles. |
TinyCloud App Authoring
Use this skill when creating or updating a TinyCloud app package.
Workflow
- Read
manifest.json.
- Validate the app identity, permissions, resources, and
knowledge.
- Keep generated knowledge flat unless a category is large.
- Document SQL, KV, DuckDB, secrets, and operations only when present.
- Keep capability details near the resource that requires them.
- Never write secret values into app knowledge files.
- For SQLite schema setup, use
sql.db(name).migrations.apply(...) and require
tinycloud.sql/schema.
- Treat missing
defaults as true; document implicit app-scoped KV and
SQLite resources so authors do not over-request baseline access.
Output Shape
manifest.json
knowledge/
index.md
resources.md
sql.md
kv.md
secrets.md
operations.md
Style
- Be concise.
- Prefer tables for capabilities and schemas.
- Put agent-specific preservation rules under
Agent notes.
- Do not generate empty category files.
- When
knowledge is true, use knowledge/index.md.
- Mark materialized SQL indexes as rebuildable when they are caches.
- Do not place cold DDL in hot request paths.