Resume skill listing suppression
Skill vishuwa2004/cskill-agents/skills/resume-skill-listing-suppression
Mark the current skill listing as already sent when resuming so the transcript does not receive a redundant payload.From its SKILL.md
npx -y skills add vishuwa2004/cskill-agents --skill resume-skill-listing-suppressionAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 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.1 KB, 392 tokens by cl100k_base, as published. Nobody here has run it
SKILL: Resume Skill Listing Suppression
Domain: command-surfaces
Trigger: Apply when a resume flow already contains a previous skill_listing attachment and injecting another would waste ~600 tokens.
Source Pattern: Distilled from reviewed command-surface and listing-control patterns.
Core Method
Treat a resume run as continuing an existing transcript: before recomputing skill_listing, mark every command that already exists in the transcript as sent by setting suppressNext = true and filling sentSkillNames for that agentId. Return early without emitting any listing so the resume session does not repeat the large skill payload, even though the future process loses the ability to announce cross-process deltas until the next full session.
Key Rules
- Expose
suppressNextSkillListing()so external flows (conversation recovery) can set a flag that the next listing should be skipped. - When building the attachment, check
suppressNext; if true, mark all current commands as sent, reset the flag, and return[]. - Accept the trade-off: cross-process delta coverage is deferred to the next non-resume session, but transcripts stay lean and avoid bursting the turn with redundant data.
- Keep the marking logic scoped to the process-local
sentSkillNamesmap keyed byagentId(main thread uses empty string) so per-agent delta tracking remains correct.
Example Application
When a session is resumed, call suppressNextSkillListing() right before getSkillListingAttachments so it returns [] and the transcript keeps the listing it already has instead of receiving another copy.
Anti-Patterns (What NOT to do)
- Do not clear
sentSkillNamesor unsetsuppressNextduring resume; you need to pretend the listing is still current. - Do not let resume inject the full listing even once; the ~600-token delta is expensive for every restart.
What ships with it: 1 file
888 B alongside SKILL.md
- skill.yaml888 B
Gives 0 of the 12 instructions most hr recruiting skills give in 392 tokens
Counted across 356 of the 357 authors here whose files we hold, read 2026-08-07
- Quantify achievements with specific metricsin 14 of 356, across 6 files
- Keep the resume under two pagesin 14 of 356, across 6 files
- Request the full job description if not providedin 12 of 356, across 4 files
- Extract keywords and prioritize job requirementsin 12 of 356, across 4 files
- Stop and ask for clarification if required inputs are missingin 12 of 356, across 5 files
- Map candidate experience to job requirementsin 11 of 356, across 3 files
- Ask if the user wants adjustmentsin 11 of 356, across 3 files
- Provide strengths and gap analysis after the resumein 10 of 356, across 2 files
- Request candidate background details if not providedin 10 of 356, across 2 files
- Format experience bullets as action verb plus resultin 10 of 356, across 2 files
- Ask for missing inputs before startingin 10 of 356, across 9 files
- Use exact job description terminologyin 9 of 356, across 1 file
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.