Description
STRATAFUL — Proof-of-Concept Addon Built on Strata
by CIServerModding
Strataful proves the Strata framework works. Every feature is built using Strata modules — no raw API calls, no reinvented wheels.
Powered by Strata. Apache 2.0 licensed.
★ FEATURES ★
- /strataful:status — Stats, TPS, and cooldown status
- /strataful:heal — Heal to full (30s cooldown)
- /strataful:feed — Fill food bar (3x/60s rate limited)
- /strataful:kit — Claim 5 bread (60s cooldown, inventory-aware)
- /strataful:profile — Execution times for every command
- /strataful:guide — Step-by-step testing walkthrough (9 steps)
- /strataful:info — List all commands
- Spawn region tracking — welcome on enter/leave
- Persistent player stats — survives restarts
- Periodic GC — auto-prune stale data
- "Powered by Strata" message on every join
★ STRATA MODULES SHOWCASED (17 of 19) ★
- Storage — Debounced stat persistence
- Cooldown — Per-player heal and kit cooldowns
- RateLimit — 3 feeds per 60s sliding window
- Inventory — countItem + addItem for the kit
- Effects — fillHealth + fillFood (saturation)
- Health — Real-time TPS monitoring
- Profiler — Every command timed
- Cache — 30s TTL stat caching
- Region — Spawn area enter/leave detection
- Throttle — /status anti-spam (1 per 5s)
- Scheduler — Priority-based delayed tasks
- Queue — Stat updates batch-processed 5/sec
- Events — Crash-safe playerSpawn + intervals
- Commands — All 7 commands crash-proof
- Utils — Duration formatting for cooldowns
- Memory — Storage key usage tracking
- Log — Prefixed console output
- (Debounce used internally by Storage.set)
★ CRASH-SAFE ★
Every command uses system.run() for native API calls. Cooldown and rate-limit checks happen synchronously. Health, food, and inventory operations are deferred. One failing command never breaks the others.
★ TECHNICAL DETAILS ★
- Architecture: Imports from ./strata.js (ES module)
- No experiments required (stable @minecraft/server 2.1.0)
- No cheats or operator rank needed
- Compatible with Minecraft Bedrock 1.26.40+
- All API calls deferred via system.run()
- Stats saved with debounced writes
- Region polling every 1s (configurable)
- GC runs every 5 min
★ HOW TO USE ★
- Download the .mcaddon
- Open it — Minecraft imports the behavior pack
- Enable the Strataful BP in your world settings
- Type /strataful:guide for a testing walkthrough
- Or just start using: /heal, /feed, /kit, /status
★ COMMANDS ALSO WORK WITHOUT NAMESPACE ★
- /status (or /strataful:status)
- /heal (or /strataful:heal)
- /feed (or /strataful:feed)
- /kit (or /strataful:kit)
- /profile (or /strataful:profile)
- /guide (or /strataful:guide)
- /info (or /strataful:info)
★ CREDITS ★
Publisher: CIServerModding
Developer: ClockSplice
Framework: Strata v0.3.0 (2026.0.3.0)
License: Apache License 2.0
★ BUG REPORTS & FEATURE REQUESTS ★
Found a bug? Want a feature added? Let me know in the comments!
Powered by Strata — Optimization Framework for Bedrock
© 2026 CIServerModding. Apache License 2.0.


