Collection of agent skills for SLICC and Tessl-compatible runtimes — productivity, creative, document, and integration skills.
76
96%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
High
Do not use without reviewing
Cross-tool inbox aggregator. Runs each available source skill's monday sub-command
in parallel, merges the JSON results, optionally rates each item with an AI agent,
and prints a sorted JSON array on stdout. Progress messages go to stderr.
Source skills: gmail · slack · teams · outlook · github (as gh) · servicenow — each must be installed separately and expose its own [cmd] monday sub-command.
# Auto-discover sources on PATH and aggregate the last 7 days, 50 items per source
monday
# Pick specific sources
monday gh slack --limit 20 --date 3d
# Aggregate + rate items (1-9 importance, 1-8 urgency, with summaries)
monday --rate-importance 9-1 --rate-urgency 8-1 --rate-summary 500
# Rate with a specific model and a knowledge-base context directory
monday gh --rate-importance 8-3 --rate-model claude-haiku-4-5 --rate-context /workspace/kbThe monday command executes the following steps in order:
which [cmd] for each name in KNOWN_COMMANDS and keep those found on PATH; otherwise use the names supplied as positional args.[cmd] monday --limit N --depth N --date Nd for every discovered source concurrently.id — merge all item arrays in source order; when two items share the same id, the first occurrence wins and later duplicates are dropped (so positional arg order determines precedence for overlapping sources).--rate-* flag is set, submit each item to the rating agent (model: --rate-model; optional context: --rate-context) to assign importance, urgency, and summary fields. Rating failures fall back to the unrated item; aggregation still completes.urgency × importance descending (ties broken by ts descending); otherwise sort by ts descending. Write the final JSON array to stdout.| Flag | Default | Description |
|---|---|---|
--limit N | 50 | Max items per source |
--depth N | 5 | Thread/comment depth per item (passed to sources) |
--date Nd | 7d | Time window (e.g. 3d, 2w) |
--rate-importance HI-LO | off | Rate each item's importance on a HI..LO integer scale |
--rate-urgency HI-LO | off | Rate each item's urgency on a HI..LO integer scale |
--rate-summary N | off | Generate a ~N-character summary per item |
--rate-model NAME | claude-haiku-4-5 | Model used by the rating agent |
--rate-context PATH | none | Read-only knowledge-base path the rating agent can grep |
Positional args (gh, slack, teams, outlook, gmail, servicenow) select
which sources to invoke. With no positional args, monday runs which <cmd> on
the known source list and uses whichever are found on PATH.
A command is "monday-compatible" when it accepts [cmd] monday --limit N --depth N --date Nd and writes a JSON array of items to stdout. Each item must include id (stable unique string for deduplication), ts (ISO timestamp for sorting), and any other fields (title, url, participants, body, etc.) which are passed through unchanged.
To add a new source, implement the protocol above and invoke it explicitly:
monday [newcmd] gh slack. To register it for auto-discovery, add the command name
to the KNOWN_COMMANDS list in the aggregator script.
A single JSON array on stdout. Sorting and rating augmentation follow pipeline steps 5–6.
Unrated item example:
[
{
"id": "gh-pr-4821",
"ts": "2025-07-14T09:12:00Z",
"source": "gh",
"title": "Fix race condition in auth middleware",
"url": "https://github.com/org/repo/pull/4821",
"participants": ["alice", "bob"]
}
]Rated item example (with --rate-importance 9-1 --rate-urgency 8-1 --rate-summary 200):
[
{
"id": "gh-pr-4821",
"ts": "2025-07-14T09:12:00Z",
"source": "gh",
"title": "Fix race condition in auth middleware",
"url": "https://github.com/org/repo/pull/4821",
"participants": ["alice", "bob"],
"importance": 8,
"urgency": 7,
"summary": "Security-critical PR awaiting your review; blocks the 2.4 release."
}
]monday gh slack --date 2d | jq '.[0:5] | .[] | {id, ts, title}'.tessl-plugin
skills
aem
aem-edge-functions
references
ai-writing-detector
references
apple-music
references
bluebubbles
cloudflare
concur
fluffyjaws
github
gmail
references
icloud
references
mixtape
references
monday
oryx
outlook
pm-prd
pptx
pptx2pdf
presentations
review
save-the-cat
servicenow
references
strava
strudel-music
swarm
references
teams
references
wavespeed
xai-grok