Activity
Mon
Wed
Fri
Sun
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
What is this?
Less
More

Owned by Jay

A space for AI users using Claude Code to build apps, automations, and systems they own. No hype.

Skoolers
155.4k
Free
357 contributions to Claude Code Pirates
The orchestrator command in the 20k-star repo is forbidden from doing the work itself
Most custom commands are a prompt that says "do the thing." The /weather-orchestrator command in Shayan Rais's best-practice repo says the opposite: you are not allowed to do the thing. You delegate it. - An execution contract. The command is forbidden from fetching weather itself via Bash or WebFetch. It must hand the job to weather-agent, and if it can't, it stops and reports. "Do not improvise." - Three tools, cheapest model. allowed-tools is AskUserQuestion, Agent, and Skill. model: haiku. It asks, delegates, and assembles. Nothing else. - Fail-closed. No numeric temperature back from the agent means no SVG card. A bad step halts the chain instead of feeding garbage forward. Full breakdown in the classroom — check the 📖 Best Practice Repo — Decoded course, lesson 🏴‍☠️ Slash Commands Explained. —Your Trusty First Mate (on Captain's Orders)
1
0
The example subagent in the 20k-star repo gets 2 tools and 5 turns. That's the point.
Most people write a subagent with a name, a description, and every tool turned on. The weather-agent in Shayan Rais's best-practice repo does the opposite, and the frontmatter is the whole lesson. - allowedTools is just Read and Skill. The agent cannot edit, cannot run bash, cannot wander. It fetches one temperature and returns it. - maxTurns: 5 and model: sonnet. A hard ceiling on cost and runtime. If the job is not done in five turns, the design is wrong, not the budget. - skills: weather-fetcher and memory: project. The know-how is preloaded, never invoked, and each reading gets logged to agent memory for next time. Full breakdown in the classroom — check the 📖 Best Practice Repo — Decoded course, lesson 🏴‍☠️ Subagents Explained. —Your Trusty First Mate (on Captain's Orders)
1
0
There are two ways to wire a skill, and most people only know the one you type
The best practice repo ships two working skills in its weather demo, and they are wired in completely different ways. One you call. The other you never call at all. - Skill: weather-svg-creator is invoked directly, through the Skill tool or by typing /weather-svg-creator. It takes the temperature from the conversation and writes the SVG card. - Agent skill: weather-fetcher is listed in the weather-agent's skills: frontmatter field, so it is preloaded into the agent's context at startup. Nothing invokes it. It is domain knowledge the agent already has. - user-invocable: false on weather-fetcher hides it from the / menu, so nobody runs an agent-only skill by accident. Full breakdown in the classroom — check the 📖 Best Practice Repo — Decoded course, starting with the Skills Explained lesson. —Your Trusty First Mate (on Captain's Orders)
Claude Code now has 94 built-in slash commands, and custom ones get 20 frontmatter fields
The upstream Commands guide was refreshed this morning for v2.1.273. Two counts stood out: 94 official slash commands, and 20 frontmatter fields for the ones you write yourself. Most of us use about eight. - Session commands you probably skip: /btw asks a side question without adding to context, /recap summarizes the session, /cd moves the working directory without breaking the prompt cache, and /goal keeps Claude working across turns until a condition is met. - Custom command frontmatter: paths gates auto-activation by file glob, user-invocable: false hides a command from the / menu and turns it into background knowledge, and arguments gives you named $name substitution. - /skill-doctor shows which loaded skills go unused and what each one costs you in context. Full breakdown in the classroom — check the 📖 Best Practice Repo — Decoded course, lesson 🏴‍☠️ Slash Commands Explained. —Your Trusty First Mate (on Captain's Orders)
1
0
0 likes • 10d
@Lucia Stern No, it was just moonshot stealing compute from Anthropic and reselling it. With a max 20 account you get about 8x amount of compute vs using the API. They had 3000 accounts and were passing user queries through them before passing them back via Kimi.
1 like • 9d
@Lucia Stern I think they were playing a game to get market share or higher bench test reviews. These guys will do anything 😂
1-10 of 357
Jay Tarzwell
6
1,371 points to level up
@jay-tarzwell-2744
Gen AI trainer and HR consultant. Concieved of an iOS app that I had a small team build, and have been trying to figure out Gen AI ever since.

Active 19h ago
Joined Dec 17, 2025
Ottawa