skillify

skillify is a skill for Claude Code, Codex from furkangonel/cowrangler. It costs 21 tokens per session (860 once invoked), scanned A, original, MIT.

A skill-building tool that turns the repeatable parts of the current coding session into a reusable SKILL.md instruction file. It separates repeatable steps from one-off decisions.

In plain words
What is it for?
For documenting workflows, deciding when a reusable skill should trigger, handling edge cases, and recording success criteria and allowed tools.
Why use it?
It saves you from reconstructing the same process in future sessions and helps make the process easier for an agent to follow consistently.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/furkangonel/cowrangler/skillify
Any agent
npx skills add furkangonel/cowrangler --skill skillify
Clone the repo
git clone --depth 1 https://github.com/furkangonel/cowrangler

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for skillify

README.md
[![agentmods](https://agentmods.dev/badge/skills/furkangonel/cowrangler/skillify.svg)](https://agentmods.dev/skills/furkangonel/cowrangler/skillify)
Your own site
<a href="https://agentmods.dev/skills/furkangonel/cowrangler/skillify"><img src="https://agentmods.dev/badge/skills/furkangonel/cowrangler/skillify.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 860 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00021 $0.00860
Opus 5 $0.00010 $0.00430
Sonnet 5 $0.00004 $0.00172
Haiku 4.5 $0.00002 $0.00086

Measured 4d ago against content hash 9c2f5fb01e8e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

skillify scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

bundled_skills/skillify/SKILL.md · 101 lines

How it starts

The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Skillify Skill

Goal

Analyze the current session's work, identify the repeatable process within it, and create a well-structured SKILL.md that captures that process for future use.

Steps

1. Identify the repeatable process

Look at what was done in this session:

  • What was the user's original request?
  • What steps were taken to fulfill it?
  • Which steps were mechanical/repeatable vs. one-off judgment calls?

A good skill captures the repeatable mechanical steps and the judgment criteria — not the one-time context.

Success criteria: You can describe the skill in one sentence: "This skill [does what] [when what trigger]."

2. Interview the user (if needed)

Ask:

  • "What should trigger this skill in the future?" (the when_to_use)
  • "Are there variations of this task I should handle?" (edge cases)
  • "What's the most important thing to get right?" (success criteria)
  • "Which tools should be available to this skill?" (allowed-tools)

If the session was clear enough, skip to step 3.

Success criteria: You have enough information to write a when_to_use that will trigger reliably.

3. Choose the skill location

  • Project-specific (.cowrangler/skills/<name>/): Workflow is specific to this codebase
  • Global (~/.cowrangler/skills/<name>/): Workflow is general-purpose, useful across projects

Ask the user if not obvious.

4. Write the SKILL.md

Follow this template strictly:

---
name: [kebab-case-name]
description: [One line: what it does and when]
when_to_use: Use when [trigger condition]. Triggers include "[example phrase 1]", "[example phrase 2]". Also trigger when [secondary trigger].
argument-hint: "[input the user should provide]"
allowed-tools: [comma-separated list, or omit for all tools]
---

# [Skill Title]

## Goal
[What this skill achieves — the outcome, not the process]

## Steps

### 1. [Step name]
[What to do, concretely]

**Success criteria**: [How you know this step is done correctly]

### 2. [Step name]
...

Read the full file on GitHub · 101 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 101 lines · 21 tokens per session scan A 9c2f5fb01e8e

Subscribe to this mod's changes

skillify is a skill published in the GitHub repository furkangonel/cowrangler (2 stars, last pushed 3d ago), licensed MIT. It adds 21 tokens to every session and 860 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

eastmoney-stock-valuation

查询东财个股日估值。当用户需要查询全部 A 股个股的每日估值数据,包括市盈率(TTM/LYR)、市净率、市现率、市销率、PEG、总市值、流通市值、收盘价等;支持单票单日、单票历史区间及全市场查询,或了解东财个股日估值时使用。.

FTShare-Lab/FTShare-skill · 93 tokens

stock-quotes-list

查询 A 股行情列表(分页)。当用户需要获取 A 股(沪深京)股票行情列表,支持按板块筛选、多字段排序与分页,用于行情中心「个股行情」等列表展示,或了解A 股行情列表(分页)时使用。.

FTShare-Lab/FTShare-skill · 64 tokens

eastmoney-us-stock-daily-ohlc

查询东财美股历史日 K 线。当用户需要查询东财美股历史日 K 线;有日期范围时按 3 天窗口分批请求,无日期范围时全量拉取,或了解东财美股历史 OHLC、东财美股历史日 K 线时使用。.

FTShare-Lab/FTShare-skill · 77 tokens

etf-list-paginated

ETF 分页列表,支持分页、排序、筛选(market.ft.tech)。用户问 ETF 列表、全市场 ETF、按涨跌幅排序的 ETF、筛选某类 ETF 时使用。.

FTShare-Lab/FTShare-skill · 51 tokens

etf-ohlcs

单只 ETF OHLC K 线(market.ft.tech)。用户问某只 ETF 的 K 线、日线/周线/月线、开高低收、前/后复权时使用。.

FTShare-Lab/FTShare-skill · 50 tokens

etf-prices

单只 ETF 分钟级分时价格(market.ft.tech)。用户问某只 ETF 分时、当日走势、多日分时、一分钟行情时使用。.

FTShare-Lab/FTShare-skill · 40 tokens