traderspost/pinescript-agents

video

Analyzes YouTube trading videos to extract Pine Script specifications. Provide a YouTube URL and get a detailed breakdown of the strategy or indicator.

First seen Jul 14, 2026

Installation

$ npx skills add traderspost/pinescript-agents --skill video

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from traderspost/pinescript-agents · top by installs.

npx skills add traderspost/pinescript-agents

Browse all from traderspost/pinescript-agents

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 162
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash, Read

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,660 B
  • docs SUMMARY.md 164 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 30 installs

SKILL.md

YouTube Video Analysis

Analyzing YouTube video to extract trading strategy specifications.

Instructions

When this skill is invoked with a YouTube URL:

  1. Run the video analyzer immediately:

``bash python tools/video-analyzer.py "$ARGUMENTS" ``

  1. Show the analysis results to the user, including:

- Video title and author - Detected script type (indicator/strategy) - Complexity score - Key indicators and patterns identified - Entry/exit conditions extracted - Suggested features

  1. Confirm with the user:

- "Does this capture the strategy correctly?" - "Would you like me to adjust anything before implementing?"

  1. Proceed to implementation using pine-developer skill

Command Options

If standard analysis fails:

# Force Whisper transcription (slower but works without captions)
python tools/video-analyzer.py "$ARGUMENTS" --whisper

# Use larger model for better accuracy
python tools/video-analyzer.py "$ARGUMENTS" --whisper --model medium

Error Handling

If video analyzer fails:

  1. Check if it's a valid YouTube URL
  2. Try with --whisper flag
  3. If still failing, ask user to describe the strategy manually

Post-Analysis

After confirming the analysis:

  1. Create a project file in projects/
  2. Use pine-developer to implement the extracted strategy
  3. Add debugging tools for verification