skillify

Codifies a successful scrape flow into a permanent tested browser script.

Updated Jun 22, 2026
One-click install
npx skills add https://github.com/aicodepro/ai-agent-nexi --skill skillify-aicodepro
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skillify
Source: https://github.com/aicodepro/ai-agent-nexi/tree/main/agent/skills/gstack/skillify
Command: npx skills add https://github.com/aicodepro/ai-agent-nexi --skill skillify-aicodepro

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Repeatedly re-driving a browser page for the same scraping intent is slow and wasteful. This Skill converts the most recent successful /scrape flow into a permanent, reusable browser-skill on disk so future runs execute in milliseconds instead of re-automating the page. ## Core Features & Use Cases - Flow Codification: Walks back through the conversation to synthesize script.ts, script.test.ts, and a fixture from the successful scrape. - Tested Before Commit: Runs the generated test in a temporary directory and asks for confirmation before committing the skill to disk. - Fast Replay: Future /scrape calls with the same intent run the codified script in roughly 200ms. - Use Case: After scraping a product listing page successfully, invoke this Skill to save that flow permanently so the next identical scrape runs instantly without re-driving the browser. ## Quick Start Ask the assistant to skillify or codify the last successful scrape so it becomes 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 save a browser scrape flow for reuse?

Invoke the skillify skill after a successful /scrape run. It walks back through the conversation, generates script.ts, script.test.ts, and a fixture, then asks for confirmation before committing the skill to disk.

How to make repeated web scraping faster?

Codify the scrape flow into a permanent browser skill. Future /scrape calls with the same intent execute the saved script in roughly 200ms instead of re-driving the page through full browser automation.

Does skillify test the generated scrape script before saving?

Yes. The skill runs the generated script.test.ts in a temporary directory to verify the codified flow works, and only asks you to commit it after the test passes.

When should I not codify a scrape flow?

Avoid codifying one-off scrapes or flows against pages whose structure changes frequently, since the saved script replays the recorded steps and can break when the target page layout changes.