Collection of agent skills for SLICC and Tessl-compatible runtimes — productivity, creative, document, and integration skills.
73
92%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Risky
Do not use without reviewing
Create playlists that reward the attentive listener—privileging originals over famous covers, foreign adaptations over Anglophone defaults, and thematic depth over algorithmic obviousness.
Every mixtape produces three artifacts:
Build dialectical structures: Bow Wow Wow's "I Want Candy" (feral wanting) answered by Jagger's "You Can't Always Get What You Want" (philosophical resignation). Surface hidden producer lineages (Steinman connections) and genre conversations across decades.
Consult in order: user's Last.fm history → secondhandsongs.com for cover genealogies → Apple Music catalog for availability → Discogs for obscure pressings and foreign releases.
# [PLAYLIST TITLE]
| Artist | Title | Note |
|--------|-------|------|
| Artist Name | Song Title | Brief connection explanation |Voice: wry but not cynical, erudite without showing off. Use the structure below:
[TITLE]
[Category] • [Song Count] Songs • Updated [Year]
[Opening hook about what the playlist reveals]
[Selection methodology — originals, adaptations, roads less traveled]
[Thematic architecture — the dialectic, the hidden connections]
Pairs well with: [ironic pairing suggestions]Reference art history with unexpected juxtapositions and self-aware absurdist tone. Include: art movement/period, lighting, symbolic elements, color palette, brief artistic commentary, and aspect ratio 1:1. Draw from: Dutch Golden Age vanitas, Codex Manesse, Waldorf watercolors, etc.
[Primary subject] in the style of [art movement/period], [lighting description], [symbolic elements], [color palette], [self-aware artistic commentary], aspect ratio 1:1Present the completed mixtape as:
shtml) showing the playlist as a styled, shareable cardNote: All scraping snippets are heuristic and depend on site markup. If parsing fails, ask the user to paste their top artists/tracks directly, or verify results against the rendered page.
Ask the user for their Last.fm username, or check memory/global memory for a previously stored one.
curl -s "https://www.last.fm/user/{USERNAME}/library/artists" > /tmp/lastfm_artists.html
python3 - <<'EOF'
import re
html = open('/tmp/lastfm_artists.html').read()
artists = re.findall(r'class="link-block-target">([^<]+)', html)
counts = re.findall(r'class="chartlist-count-bar-value">\s*(\S+) scrobbles', html)
for a, c in zip(artists, counts):
print(f"{c:>10} {a}")
EOFKey data points: top artists overall and by period, scrobble depth per artist, recent listening for current mood.
Substitute {SONG} with the candidate title and URL-encode it (titles with spaces or reserved characters will otherwise reject the curl request):
SONG="Sweet Jane"
curl -sG "https://secondhandsongs.com/search/work" --data-urlencode "title=${SONG}" > /tmp/shs_results.html
python3 - <<'EOF'
import re
html = open('/tmp/shs_results.html').read()
works = re.findall(r'href="(/work/[^"]+)"[^>]*>([^<]+)</a>', html)
badges = re.findall(r'class="[^"]*badge[^"]*">([^<]+)</span>', html)
for w in works: print(w)
for b in badges: print(b.strip())
EOFOn work pages, look for: "Original" badges with dates, foreign-language versions, unexpected cover artists, and cover chains (A covered by B covered by C).
Is there a famous cover?
→ Find the original on SHS
→ Check if original fits user's taste profile
Is the song in English?
→ Search SHS for foreign adaptations
→ Prefer languages matching user's known preferences
Is the obvious version by a mega-star?
→ Find the deep cut, live version, or earlier recording
→ Check if a beloved artist from user's Last.fm covered itskills
aem
ai-writing-detector
references
apple-music
references
bluebubbles
concur
fluffyjaws
github
gmail
icloud
references
mixtape
references
monday
oryx
outlook
pm-prd
pptx
pptx2pdf
presentations
review
save-the-cat
servicenow
references
strudel-music
swarm
references
teams
references
wavespeed
xai-grok