Gmail secondary inbox cleaner skill
Install, configure, share, or adapt a reusable Floom worker that cleans and classifies a non-primary Gmail inbox. Use when the user wants a secondary Gmail inbox cleaner, an inbox triage worker template, a Floom worker share package, or a skills.sh/Floom Skills package for Gmail cleanup automation.From its SKILL.md
npx -y skills add federicodeponte/gmail-secondary-inbox-cleaner-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.0 KB, 408 tokens by cl100k_base, as published. Nobody here has run it
Gmail Secondary Inbox Cleaner
Use this skill to install or adapt the bundled Floom worker template in
assets/worker-template/.
What It Does
The worker fetches unread Gmail messages, applies rule-based cleanup, and emits
an out/summary.md digest with important and FYI messages. It refuses to run
without an explicit Gmail connection id, so it cannot silently fall back to the
wrong default Gmail account.
Install In Floom
- Copy
assets/worker-template/to a working directory. - Connect the target Gmail account in Floom.
- Set
GMAIL_CONNECTION_IDto that Gmail connection id, or passconnected_account_idat run time. - Optionally edit
rules.jsonfor user-specific cleanup rules. - Validate and push:
npx -y @floomhq/floom workers validate /path/to/worker-template
npx -y @floomhq/floom workers push /path/to/worker-template
- Run a dry-run before enabling live cleanup:
npx -y @floomhq/floom run gmail-secondary-inbox-cleaner \
--input dry_run=true \
--input [email protected] \
--input connected_account_id=<gmail_connection_id> \
--json
Share
Create a Floom worker share URL:
npx -y @floomhq/floom workers share gmail-secondary-inbox-cleaner --json
For skills.sh-style sharing, publish this skill folder in a GitHub repository. Installers can then use:
skills add <owner>/<repo> --skill gmail-secondary-inbox-cleaner
Guardrails
- Never use a default Gmail connection for secondary inbox cleanup.
- Keep
dry_run=truefor first verification. - Do not include private Gmail connection ids, personal rules, or workspace secrets in published packages.
What ships with it: 7 files
47.5 KB alongside SKILL.md, 1 of them executable
agents/
- openai.yaml250 B
assets/
- worker-template/rules.json21.9 KB
- worker-template/run.pyruns21.4 KB
- worker-template/worker.yml2.2 KB
- .gitignore29 B
- LICENSE1.0 KB
- README.md645 B