Seret Movies Skill

April 4, 2026 · View on GitHub

Give any AI agent the ability to search Israeli movies, showtimes, ratings, trailers, and cinema info from seret.co.il — Israel's leading movie database.

License Platform Language skills-il

What is this?

A single markdown file (SKILL.md) that teaches any AI agent how to fetch and parse movie data from seret.co.il. No code, no dependencies, no API keys — just documented endpoints and HTML parsing patterns that any LLM with web access can follow.

Also includes a Hebrew companion (SKILL_HE.md) with fully translated instructions.

Capabilities

FeatureHow it works
Search moviesAutocomplete search by name (Hebrew or English)
Movie detailsTitle, plot, cast, director, duration, genre, content rating, IMDB link
Trailer linksDirect YouTube URL or self-hosted MP4, plus trailer page link
Seret ScoreComposite quality index (critic + audience + IMDB + momentum)
Viewer ratingUser votes out of 10 with vote count
Critic scoreProfessional review score, critic name, review blurb + stars
Popularity indexTrending score with week-over-week change percentage
"Where to watch" pollAudience intent: cinema vs. home vs. skip (percentages)
Now showingAll movies currently in Israeli theaters
Coming soonUpcoming releases with dates
ShowtimesBy movie (grouped by area/theater) or by city + day
CinemasTheater listings by region with address and phone

Quick Start

Claude Code

# Global (all projects)
cp SKILL.md ~/.claude/skills/seret-movies.md

# Or in a Claude Code plugin
cp SKILL.md ~/.claude/plugins/my-plugin/skills/seret-movies.md

Then just ask naturally:

> What movies are playing in Tel Aviv tonight?
> Tell me about the new Superman movie — is it worth watching?
> Show me the trailer for The Bride
> When is Project Hail Mary coming out?
> Find cinemas in Jerusalem

Hermes Agent

mkdir -p ~/.hermes/skills/seret-movies
cp SKILL.md SKILL_HE.md ~/.hermes/skills/seret-movies/

OpenClaw / Cursor / Other Agents

Drop SKILL.md into your agent's skill or prompt directory. The file uses standard markdown frontmatter — adapt the loading mechanism to your platform.

Raw LLM Usage

Paste the contents of SKILL.md into your system prompt. The skill instructs the LLM how to use web fetch tools to query seret.co.il endpoints.

How It Works

Seret.co.il has no public JSON API. This skill reverse-engineers 8 endpoints that return HTML fragments and server-rendered pages:

searchAUAjax.asp        GET   Search autocomplete
s_movies.asp            GET   Movie details (schema.org microdata + scores)
newmovies.asp           GET   Currently in theaters
comingsoonmovies.asp    GET   Upcoming releases
showTimesAjaxMovies.asp POST  Showtimes by movie (grouped by area)
movieTable.asp          POST  Showtimes by city + day
theatres.asp            GET   Cinemas by region
getExtraMovieRatingsAjax.asp POST Extra ratings (unreliable)

Movie detail pages include schema.org/Movie microdata for clean structured extraction, plus 5 dedicated score sections (Seret Score, viewer rating, critic score, popularity index, audience watch-intent poll) and direct trailer links (YouTube or MP4).

Area & City IDs

Area IDs (for showTimesAjaxMovies.asp — regional grouping):

IDRegion
6Jerusalem
8Haifa
13Krayot / North
17Tel Aviv
27Beer Sheva / South
31Sharon / Hashfela
34Eilat
54Hasharon

City IDs (for movieTable.asp — different numbering):

IDCity
41Tel Aviv / Yafo
3Beer Sheva
8Haifa

For the full city list, parse the <select name="f_areaId"> dropdown from movieTable.asp.

Requirements

Your AI agent needs:

  • Web fetch capability (HTTP GET + POST)
  • HTML parsing (regex or DOM — the skill provides patterns for both)
  • windows-1255 encoding support (Hebrew character set)

No API keys, authentication, or rate limits.

License

MIT — use it however you want.