skillify

Codify successful browser scrape workflows into permanent TypeScript skills with automated tests.

Updated May 9, 2026
One-click install
npx skills add https://github.com/kk20300113-png/my-claude-skills --skill skillify-kk20300113-png
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skillify
Source: https://github.com/kk20300113-png/my-claude-skills/tree/main/skillify
Command: npx skills add https://github.com/kk20300113-png/my-claude-skills --skill skillify-kk20300113-png

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Repeatedly running the same browser scrape flow requires manually driving the page every time, which is slow and inefficient. This Skill eliminates that waste by codifying your last successful scrape into a permanent, reusable script that runs in ~200ms.

Core Features & Use Cases

  • Permanent Scrape Scripts: Automatically turns your most recent successful /scrape flow into a permanent on-disk browser skill for future use.
  • Automated Test Generation: Synthesizes matching script.ts, script.test.ts, and page fixture files, then runs tests in a temporary directory to verify functionality.
  • Safe Commit Workflow: Asks for your explicit confirmation before saving the new skill to your project, so you never accidentally commit broken or unwanted code. Use Case: If you scrape competitor pricing pages weekly, use this Skill to turn that manual scrape flow into a permanent script that runs in 200ms instead of re-driving the page every time.

Quick Start

Ask your AI to codify your most recent successful scrape of the quarterly sales report page into a permanent, reusable browser skill.

Frequently Asked Questions about skillify

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I turn a manual web scraping flow into a reusable script?

To turn a manual web scraping flow into a reusable script, this codification tool converts your most recent successful browser scrape into a permanent, executable TypeScript file that runs in approximately 200ms. It eliminates redundant manual page driving for recurring tasks.

Does scrape automation generate test files for the extracted workflows?

Yes, scrape automation generates matching TypeScript test files and page fixtures alongside the main script. It validates the functionality of the deterministic scraping workflow by running automated tests in a temporary directory before committing.

What is workflow codification for recurring web scraping tasks?

Workflow codification for recurring web scraping tasks is the process of capturing a successful page interaction to generate type-safe scripts. This creates permanent on-disk browser skills for consistent page layouts like price monitoring and inventory tracking.

Can I use this to automate price monitoring on pages with consistent layouts?

Yes, you can use this to automate price monitoring on pages with consistent layouts. It specializes in codifying structured content extraction into permanent browser skills, allowing recurring price tracking to execute rapidly without manual intervention.

How do I ensure safe commit workflows when generating TypeScript scripts?

To ensure safe commit workflows when generating TypeScript scripts, the tool requires your explicit confirmation before saving the new skill to your project disk. This prevents accidentally committing broken or unwanted scraping code.

Why does deterministic scraping require page fixtures?

Deterministic scraping requires page fixtures to provide stable input data for automated tests. By synthesizing these fixtures with the script, the tool verifies that the type-safe TypeScript extraction logic functions correctly before permanent deployment.