← Back to Skills Marketplace
david-schopf

Flatastic

by david-schopf · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
217
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install flatastic
Description
Manage shared household chores, shopping lists, and expenses via Flatastic. Use when user asks about chores, WG tasks, shopping list, expenses, or Flatastic.
README (SKILL.md)

Flatastic CLI

CLI for managing shared household in Flatastic (WG-App).

Installation

cd ~/Projects/flatastic-cli
npm install
npm run build
npm link

After linking, flatastic is available globally.

Setup

flatastic auth             # Login with email/password
flatastic refresh          # Refresh WG data from server

Token + user/WG info saved to ~/.config/flatastic/config.json

Commands

Chores

flatastic chores           # List all chores with assignee, points, due dates
flatastic done \x3Csearch>    # Mark chore as done (partial name match)
flatastic remind \x3Csearch>  # Send reminder notification for a chore
flatastic stats            # Show chore statistics & leaderboard
flatastic history          # Show chore completion history
flatastic history -l 50    # Show last 50 entries

Shopping List

flatastic shop             # Show pending items (shortcut)
flatastic shop -a          # Show all items (including bought)

flatastic shopping list    # Show pending items
flatastic shopping add "Milch"  # Add item to list
flatastic shopping done milch   # Mark item as bought
flatastic shopping delete milch # Remove item from list
flatastic shopping clear        # Clear all bought items

Expenses / Finances

flatastic expenses         # Show recent expenses
flatastic expenses -l 20   # Show last 20 expenses
flatastic balances         # Show who owes whom
flatastic expense "Pizza" 24.50           # Add expense, split with all
flatastic expense "Taxi" 15 -s "David"    # Split only with David

WG Info

flatastic wg               # Show WG info and flatmates with points

Shouts (Messages/Bulletin Board)

flatastic shouts           # Show recent shouts
flatastic shout "Pizza ist da!"  # Post a new shout

Usage Examples

"Was steht heute an?"

flatastic chores

"Hake Staubsaugen ab"

flatastic done staubsaugen

"Erinner mal wegen Müll"

flatastic remind müll

"Wer hat die meisten Punkte?"

flatastic stats

"Was muss ich noch einkaufen?"

flatastic shop

"Setz Milch auf die Liste"

flatastic shopping add "Milch"

"Hab ich gekauft"

flatastic shopping done milch

"Wer schuldet wem Geld?"

flatastic balances

"Ich hab 24€ für Pizza bezahlt"

flatastic expense "Pizza" 24

API Endpoints Discovered

Chores

  • GET /chores — List all chores
  • GET /chores/next?id=&userId=&completedBy= — Mark as done
  • GET /chores/remind?id= — Send reminder
  • GET /chores/statistics — Get point statistics
  • GET /chores/history — Completion history
  • POST /chores — Create new chore
  • POST /chores/update — Update chore
  • DELETE /chores/id/:id — Delete chore

Shopping

  • GET /shoppinglist — List all items
  • POST /shoppinglist — Add item {name: "..."}
  • GET /shoppinglist/toggle_item?id= — Toggle bought
  • DELETE /shoppinglist/item/:id — Delete item
  • POST /shoppinglist/delete_bought_items — Clear bought

Expenses (Cashflow)

  • GET /cashflow?offset=&limit= — List expenses
  • GET /cashflow/settlement — Who owes whom
  • GET /cashflow/statistics — Expense stats
  • POST /cashflow — Add expense
  • DELETE /cashflow/id/:id — Delete expense

Shouts

  • GET /shouts — List shouts
  • POST /shouts — Post shout {shout: "..."}
  • DELETE /shouts/id/:id — Delete shout

WG

  • GET /wg — WG info with flatmates

Config File

~/.config/flatastic/config.json:

{
  "token": "...",
  "user": { "id": "...", "firstName": "...", "chorePoints": "..." },
  "wg": {
    "name": "...",
    "flatmates": [{ "id": "...", "firstName": "..." }, ...]
  }
}

Notes

  • All commands support partial name matching (case-insensitive)
  • Amounts in expenses are in Euros (e.g., "24.50" or "24,50")
  • Reminders trigger push notifications to the assigned person
Usage Guidance
This skill simply instructs the agent to call an existing 'flatastic' CLI; before installing, confirm you trust the source of that CLI (the SKILL.md suggests building/linking via npm). Be aware commands can change live data and send notifications (posting shouts, sending reminders, adding expenses). Protect the local config file (~/.config/flatastic/config.json) because it contains an auth token. If you do not want the agent to perform destructive or noisy actions autonomously, restrict when it can invoke the skill or review commands before execution.
Capability Analysis
Type: OpenClaw Skill Name: flatastic Version: 1.0.0 The skill bundle provides a CLI interface for managing Flatastic household tasks, shopping lists, and expenses. The functionality described in SKILL.md is consistent with the stated purpose, and there is no evidence of malicious intent, data exfiltration, or prompt injection. The storage of authentication tokens in ~/.config/flatastic/config.json is standard behavior for CLI utilities.
Capability Assessment
Purpose & Capability
Name/description match the instructions: the SKILL.md documents calls to a 'flatastic' CLI to manage chores, shopping, expenses and WG info. The only declared requirement is the 'flatastic' binary, which is appropriate for this purpose. The README-style install steps (npm install, npm link) explain how to obtain that binary but are not required by the platform.
Instruction Scope
Instructions tell the agent to run live CLI commands that query and modify remote Flatastic state (list chores, mark done, post shouts, add expenses, send reminders). This is expected, but important: many commands mutate remote data and can trigger notifications to other users. The SKILL.md references the config file location (~/.config/flatastic/config.json) where a token and user/WG info are stored — the skill does not request extra system files, but the agent will rely on that token when calling the service.
Install Mechanism
No install spec is included (instruction-only), which is the lowest-risk install pattern. The SKILL.md contains manual npm-based steps to build/link the CLI for users, but the platform itself does not download or execute arbitrary archives. No external or untrusted URL downloads are specified.
Credentials
The skill does not require environment variables or unrelated credentials — appropriate for its scope. It does rely on a locally stored token in ~/.config/flatastic/config.json; access to that file is proportional to the skill's purpose but contains authentication material, so it should be protected. No unrelated secrets or broad system config paths are requested.
Persistence & Privilege
The skill is not configured with always:true and is user-invocable; autonomous invocation is allowed by default but not exceptional here. The skill does not request elevated system privileges or modify other skills' configurations.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install flatastic
  3. After installation, invoke the skill by name or use /flatastic
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of Flatastic CLI skill for managing shared household chores, shopping lists, and expenses. - Supports authentication, chore management, shopping list operations, expense and balance tracking, and bulletin board messaging. - Offers comprehensive command set for flat routines: chores, shopping, expenses, and WG info. - Enables partial name matching for easier, faster interactions. - Integrates with the Flatastic API to synchronize data, trigger reminders, and update household activity.
Metadata
Slug flatastic
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Flatastic?

Manage shared household chores, shopping lists, and expenses via Flatastic. Use when user asks about chores, WG tasks, shopping list, expenses, or Flatastic. It is an AI Agent Skill for Claude Code / OpenClaw, with 217 downloads so far.

How do I install Flatastic?

Run "/install flatastic" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Flatastic free?

Yes, Flatastic is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Flatastic support?

Flatastic is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Flatastic?

It is built and maintained by david-schopf (@david-schopf); the current version is v1.0.0.

💬 Comments