Instagram videos
Cloud-based agent skills for creating AI avatar talking-head videos and short-form reels (skills.sh format)
npx -y skills add puntorigen/avatar-skills --skill instagram-videosAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 29 days oldThe repository was created 29 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 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.
What its author says it does
Copied from the file, not written here
Download all public videos/reels from an Instagram profile to a local folder, named with upload date-time (YYYY-MM-DD_HH-MM-SS.mp4). Uses Picnob via browser automation plus a Python download script. Use when the user asks to download Instagram videos, reels, or video content from a public profile, save IG videos locally, or batch-download profile reels with datetime filenames.
SKILL.md
4.4 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it
Instagram Videos Downloader
Download every public video/reel from an Instagram profile into a user-specified folder, named by upload datetime.
Do not use instaloader, yt-dlp, or gallery-dl on profile URLs first — they return 401 without a session cookie. Use Picnob.
Inputs
| Parameter | Required | Example |
|---|---|---|
| Instagram handle or profile URL | yes | arnoldo_schaffner_bofill |
| Output directory | yes | lolo/videos |
| Timezone for filenames | no | America/Santiago (default) |
Extract handle from URLs: instagram.com/{handle}/ → {handle}.
Workflow checklist
- [ ] Step 1: Verify profile is public
- [ ] Step 2: Scrape Picnob profile feed (browser)
- [ ] Step 3: Save posts JSON
- [ ] Step 4: Run download script
- [ ] Step 5: Report results
Step 1: Verify profile is public
Open https://www.instagram.com/{handle}/ in the browser. If it shows a login wall or "This Account is Private", stop — this skill is public profiles only.
Step 2: Scrape Picnob via browser MCP
Navigate to https://www.picnob.com/profile/{handle}/.
Run via browser_cdp → Runtime.evaluate with awaitPromise: true:
(async () => {
let lastCount = 0, stable = 0;
for (let i = 0; i < 60; i++) {
window.scrollTo(0, document.body.scrollHeight);
await new Promise(r => setTimeout(r, 1500));
const c = document.querySelectorAll('.post_box').length;
if (c === lastCount) { if (++stable >= 3) break; } else { stable = 0; }
lastCount = c;
}
const posts = [];
document.querySelectorAll('.post_box').forEach((box, idx) => {
const a = box.querySelector('a[href*="/post/"]');
const m = a?.href?.match(/\/post\/([^/?#]+)/);
const counts = Array.from(box.querySelectorAll('.num')).map(e => e.textContent.trim());
posts.push({
idx, pId: m?.[1],
caption: box.querySelector('.sum')?.textContent?.trim() || '',
time: box.querySelector('.time')?.textContent?.trim() || '',
likes: counts[0], comments: counts[1],
downloadUrl: box.querySelector('.downbtn')?.href,
isVideo: !!box.querySelector('.icon_video, [class*=video]'),
isSidecar: !!box.querySelector('.icon_album, [class*=sidecar], [class*=album]'),
picnobHref: a?.href,
});
});
return posts;
})()
Step 3: Save posts JSON
Save the result to {project}/posts-raw/meta/picnob_{handle}.json. Create posts-raw/ if needed; add to .gitignore if not already there.
Step 4: Download and rename
python3 ~/.cursor/skills/instagram-videos/scripts/download_profile_videos.py \
--posts-json posts-raw/meta/picnob_{handle}.json \
--output-dir {output_folder} \
--timezone America/Santiago
The script:
- Filters videos (
.mp4indownloadUrlorisVideo: true) - Downloads each file from Picnob CDN URLs
- Fetches exact
uploadDatefrom each post's JSON-LD schema on Picnob - Renames to
YYYY-MM-DD_HH-MM-SS.mp4in the chosen timezone - Writes
{output_folder}/videos_manifest.json
Video detection note: Picnob often omits the video icon on reels. Always treat posts with .mp4 in downloadUrl as videos — the script handles this.
Collisions: Two posts at the same second get _2, _3 suffixes.
Step 5: Report to user
Summarize: handle, output path, count downloaded, any errors, and list filenames sorted newest-first.
Anti-patterns
- Do not scrape faster than ~1 req/sec on Picnob post pages (date lookup).
- Do not commit
posts-raw/— scraping artifacts belong in.gitignore. - Do not use Picnob
pIdas Instagram shortcode — it's an internal ID. - Do not scrape private profiles.
Utility scripts
| Script | Purpose |
|---|---|
scripts/download_profile_videos.py | Download + datetime rename (main entry point) |
scripts/scrape_picnob.js | Reference for browser-side scrape logic |
Additional resources
- Real run example: examples.md
- Full post/caption scraping (images, sidecars): use the
instagram-scraperskill
What ships with it: 3 files
9.0 KB alongside SKILL.md, 2 of them executable
scripts/
- download_profile_videos.pyruns5.9 KB
- scrape_picnob.jsruns1.6 KB
- examples.md1.5 KB
Gives 0 of the 12 instructions most social media skills give in ~1.1k tokens
Counted across 489 of the 492 authors here whose files we hold, read 2026-08-07
- Adapt formats and tone to each platformin 26 of 489, across 14 files
- Build content around three to five pillarsin 25 of 489, across 13 files
- Read product marketing context before asking questionsin 23 of 489, across 13 files
- Respond to all comments on your postsin 21 of 489, across 9 files
- Use the output flag to specify an output directoryin 14 of 489, across 4 files
- Generate output logo images with white backgroundin 13 of 489, across 4 files
- Fix failing generation scripts directlyin 13 of 489, across 4 files
- Ask user about HTML preview after logo generationin 12 of 489, across 3 files
- Run the download script with a URLin 12 of 489, across 3 files
- Implement exponential backoff for 429 responsesin 12 of 489, across 3 files
- Write the hook firstin 12 of 489, across 7 files
- Include a single clear call to actionin 12 of 489, across 9 files
Said here and by no other author read
- use Picnob for profile scraping
- verify profile is public first
- extract handle from profile URL
- scroll picnob feed to load posts
- run download script with JSON and timezone
- rename videos using upload date-time
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.