← Reddit

(Open source) Claude + one open-source skill turned "make our task tracker a Clash-of-Clans world" into a running app my team uses from slack. Build journey 👇

Reddit · ironmanfromebay · July 16, 2026
A developer used Claude and an open-source platform called Lemma to build a working multiplayer task tracker in approximately 2.5 hours that integrates with Slack and features Clash-of-Clans-style gamification. Tasks assigned through Slack unlock buildings in a shared 3D world that solidify when managers approve or collapse into rubble when rejected, with an agent handling follow-ups and automated recaps. The development process emphasized Claude's ability to ask clarifying questions about permissions and workflows rather than just generating code, resulting in a single agent operating seamlessly across Slack and app interfaces without separate integrations.

Detailed Analysis

A developer's Reddit post documents an unusually concrete example of Claude being used to build a functioning, multi-user internal application rather than the typical demo landing page that circulates on social media. Using an open-source "skill" called lemma-builder — part of a platform called Lemma that the poster is building and discloses upfront — the developer prompted Claude with a deliberately absurd internal team joke: turn their task tracker into a Clash-of-Clans-style world. Over roughly 2.5 hours, Claude scaffolded a complete application "pod," generating folders for tables, agents, functions, workflows, surfaces, an app interface, and schedules, then stood up a running system from a single command. The result is a Slack-integrated task management tool where assigning work triggers an in-app 3D world where completed, approved tasks become permanent buildings and rejected tasks become visible rubble — a gamified layer wrapped around real approval workflows and permissions.

The more notable part of the account isn't the code generation itself, which the poster says took minutes, but the two hours spent afterward on decisions Claude surfaced by asking clarifying questions: who can approve work, whether the agent can assign tasks or only suggest them, and what happens to rejected work. This reframes the value proposition of AI-assisted development away from raw code output and toward requirements elicitation — Claude effectively forced the team to formalize business logic and permission structures they hadn't fully thought through, translating each answer directly into workflow and access-control configuration. This is a meaningful distinction in how these tools are being used in practice: rather than a one-shot generator, Claude functioned as an interactive systems analyst that iteratively refined the specification alongside the build.

A second technical detail highlighted in the post is architecturally significant: the same agent operates both inside Slack and within the app's own interface, reading identical underlying tables under the same scoped permissions, with no separate integration layer wired up. The "surfaces" folder generated by the skill apparently handles this multi-channel exposure natively, meaning a single agent definition can serve multiple front-ends without bespoke glue code for each. This points to a broader design pattern emerging in agentic tooling — treating chat platforms, web UIs, and other interfaces as interchangeable "surfaces" over one consistent agent and data layer, rather than building and maintaining separate integrations per channel. It's a pattern that reduces duplication and keeps permission logic centralized, which matters increasingly as teams deploy AI agents across more touchpoints.

The example also reflects a growing trend of running capable AI-built systems locally on an existing Claude subscription rather than through bespoke enterprise deployments or paid API tiers, lowering the barrier for small teams or solo builders to prototype internal tools that go well beyond static demos. It sits within a wider shift in how developers are evaluating coding-capable LLMs like Claude: less on whether they can produce a plausible-looking UI, and more on whether they can handle the messier, higher-stakes work of encoding organizational logic — permissions, approval chains, state transitions — into a working, multi-surface system. The open-source nature of both the "skill" (lemma-builder) and the underlying platform (Lemma) also reflects a broader ecosystem trend of framework and tooling layers being built on top of frontier models like Claude to make agentic, full-stack application generation more repeatable and less bespoke per project.

Read original article →