Che cos'è spacetimedb-rust?
Sviluppa moduli server SpacetimeDB in Rust. Da utilizzare quando si scrivono riduttori, tabelle o logica del modulo. Fonte: douglance/spacetimedb.
Sviluppa moduli server SpacetimeDB in Rust. Da utilizzare quando si scrivono riduttori, tabelle o logica del modulo.
Installa rapidamente la skill AI spacetimedb-rust nel tuo ambiente di sviluppo tramite riga di comando
Fonte: douglance/spacetimedb.
SpacetimeDB modules are WebAssembly applications that run inside the database. They define tables to store data and reducers to modify data. Clients connect directly to the database and execute application logic inside it.
| #[derive(SpacetimeType)] on #[table] | Remove it — macro handles this | Conflicting derive macros | | ctx.db.player (field access) | ctx.db.player() (method) | "no field player on type" | | ctx.db.player().find(id) | ctx.db.player().id().find(&id) | Must access via index | | &mut ReducerContext | &ReducerContext | Wrong context type |
| Missing use spacetimedb::Table; | Add import | "no method named insert" | | #[table(name = "mytable")] | #[table(name = mytable)] | String literals not allowed | | Missing public on table | Add public flag | Clients can't subscribe | | #[spacetimedb::reducer] | #[reducer] after import | Wrong attribute path |
Campi e comandi stabili per citazioni AI/ricerca.
npx skills add https://github.com/douglance/spacetimedb --skill spacetimedb-rustSviluppa moduli server SpacetimeDB in Rust. Da utilizzare quando si scrivono riduttori, tabelle o logica del modulo. Fonte: douglance/spacetimedb.
Apri il tuo terminale o strumento da riga di comando (Terminal, iTerm, Windows Terminal, ecc.) Copia ed esegui questo comando: npx skills add https://github.com/douglance/spacetimedb --skill spacetimedb-rust Dopo l'installazione, la skill verrà configurata automaticamente nel tuo ambiente AI di coding e sarà pronta all'uso in Claude Code, Cursor o OpenClaw
https://github.com/douglance/spacetimedb