Enumerate brand entries on israeli.company classified in the technology sector — Israeli-founded/owned firms and non-Israeli companies the site has documented as having ties to Israel — with optional per-brand verdict and metadata.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionfind-tech-companiesExecute the skills CLI command in your project's root directory to begin installation:
Fetches find-tech-companies from israeli.company/find-tech-companies-ztv3p2 and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate find-tech-companies. Access via /find-tech-companies in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
0
upvotes
Run in your terminal
0
installs
0
this week
—
stars
| name | find-tech-companies |
| title | Find Israeli Tech Companies and Companies With Israeli Ties |
| description | >- Enumerate brand entries on israeli.company classified in the technology sector — Israeli-founded/owned firms and non-Israeli companies the site has documented as having ties to Israel — with optional per-brand verdict and metadata. |
| website | israeli.company |
| category | research |
| tags | - research - tech - directory - wordpress-api - israel - company-lookup |
| source | 'browserbase: agent-runtime 2026-05-20' |
| updated | '2026-05-20' |
| recommended_method | api |
| alternative_methods | - method: url-param rationale: >- Public archive pages like /technology/ and /health-tech-life-sciences/ mirror the API tag lists 1:1 and are JS-free server-rendered pagination — good fallback for screenshotting or when the REST endpoint is blocked. - method: browser rationale: >- Only needed if both the REST API and archive HTML are blocked. The site has no GraphQL/search-backend; browsing pagination is the last resort and is strictly slower than the API. |
| verified | true |
| proxies | true |
Enumerate brand entries on israeli.company that the site has classified as belonging to the technology sector — either Israeli-founded/owned companies, or non-Israeli companies the site has documented as having ties to Israel (Israeli subsidiaries, founders, investments, supply-chain links, public statements, etc.). The skill returns a list of {title, slug, url, tag_ids} for every matching brand, and (optionally) the per-brand metadata block parsed from each brand's HTML page: verdict, multinational, founded, founders, parent_company, child_companies, headquarters, belongs_to, in_the_news. Read-only — never POSTs, never logs in.
The site is a public WordPress install with /wp-json/wp/v2/* fully exposed, unauthenticated, no rate-limit observed, Cloudflare cached. Use the WP REST API for listing/filtering — it is dramatically faster than scraping and returns clean JSON. The HTML page is only needed when the user wants per-brand detail fields (verdict, founders, HQ, etc.), because the REST API returns empty content/excerpt for these posts.
Tech sectors are stored as WordPress post_tag taxonomy terms. Either hardcode the canonical IDs below, or re-discover them with a search query (the IDs are stable but counts shift as new brands are added).
GET https://israeli.company/wp-json/wp/v2/tags?per_page=100&search=tech
Canonical tech-sector tag IDs as of 2025-10 (counts as of 2026-05):
| Tag ID | Slug | Name | Count |
|---|---|---|---|
| 4 | technology | Technology (general) | 490 |
| 6172 | health-tech-life-sciences | Health Tech & Life Sciences | 1,568 |
| 6170 | industrial-technologies | Industrial Technologies | 759 |
| 6171 | agriculture-food-technologies | Agriculture & Food Technologies | 625 |
| 6165 | media-entertainment-technologies | Media & Entertainment Technologies | 439 |
| 6169 | fintech-insurtech | Fintech & Insurtech | 392 |
| 6174 | automotive-mobility-technologies | Automotive & Mobility Technologies | 290 |
| 6176 | energy-tech | Energy Tech | 216 |
| 6173 | education-knowledge-technologies | Education & Knowledge Technologies | 149 |
| 6193 | fintech | Fintech (legacy) | 24 |
| 6168 | cybersecurity | Cybersecurity (resolve via slug — see below) | ~varies |
| 6259 | information-technology | Information Technology | 8 |
| 815 | wearables-smart-tech | Wearables smart tech | 5 |
Use the slug-based lookup when you need to pin a tag without trusting the cached ID: GET /wp-json/wp/v2/tags?slug=technology → returns the term with current id and count.
GET https://israeli.company/wp-json/wp/v2/posts?tags={tag_id}&per_page=100&page={N}&_fields=id,slug,title,link,tags,date
per_page max is 100. X-WP-Total and X-WP-TotalPages response headers tell you how many pages remain._fields is a comma-separated allow-list — use it to keep payloads small (the default response is ~4× larger and still has empty content).tags query param accepts a CSV list (tags=4,6172) but the join is OR (union), not AND. To find brands with multiple specific tags simultaneously, fetch each tag's list and compute the intersection client-side using the id field, or filter on the tags array returned per post."Is {Brand} an Israeli Company?". Strip the prefix/suffix to recover the brand name.categories field on every post is [1] ("Brands") — informational only, do not filter on it.To get a deduplicated union of all tech-sector brands, fetch every tag in step 1's table and union by id.
The REST API returns empty content / excerpt for these posts — Israeli-ties details live only in the rendered HTML body. Fetch the post's link URL and extract the structured block. The block sits inside <main> and uses a flat key/value layout you can regex out:
Israeli or Not: {Yes|No|Partially|...}
Multinational: {Yes|No}
Founded: {YYYY}
Founder(s): {Name, Name, ...}
Parent Company: {Brand|None}
Child Companies: {Brand, Brand, ...}
Location/ Headquarters: {City, Region, Country}
{Brand} belongs to: {Sector, Sub-sector, ...}
In the News: {short blurb}
The unverified-content disclaimer string "The content on this page is not verified yet" appears as an HTML comment for un-curated entries — surface this as a verified: false flag on the result if present.
Aggregate Step 2 (and optional Step 3) into a single JSON list. If the user asked for a specific subsector, return only that tag's entries. If they asked broadly for "tech", return the union across all tags in Step 1's table.
If the WP REST API ever stops responding or you must screenshot the catalog UI, the human-readable archive pages mirror the API exactly:
https://israeli.company/technology/ — paginated archive for tag id 4https://israeli.company/health-tech-life-sciences/ — tag id 6172https://israeli.company/fintech-insurtech/ — tag id 6169https://israeli.company/?s={query}&post_type=post — site-wide full-text searchThe archive pages render server-side with no JS gating; browse open + browse get markdown body works without --verified or --proxies in our testing. Each archive item is a card linking to /is-{brand-slug}-an-israeli-company/. The detail page renders the same key/value block described in Step 3.
content and excerpt are intentionally empty for every brand post — the site stores the verdict/founders/HQ block as native HTML in the template, not as post body. Do not waste calls trying _fields=content and concluding the post is empty; fetch the link URL instead.?tags=4,6168 returns the union (anything tagged Technology or Cybersecurity). For an AND intersection, fetch each tag separately and intersect the id sets. WordPress does not expose tags__and over the public REST endpoint.category=1 (Brands) exists. The single category covers all 9,963 brand posts — categories are not a useful filter. Tags (post_tag taxonomy) are the real classifier.sitemap_index.xml show fresh activity through 2025-09). Re-resolve via /wp-json/wp/v2/tags?slug=... if you need today's count.fintech (id 6193, 24 posts) and fintech-insurtech (id 6169, 392 posts), or biotechnology (id 49, 3 posts) vs biotechnology-pharma (id 40, 9 posts) vs health-tech-life-sciences (id 6172, 1568 posts). The newer six-thousand-range tags are the curated taxonomy; treat older low-id tags as historical/leftover and prefer the 6000-series when ambiguous."Is {Brand} an Israeli Company?". Strip with /^Is (.+) an Israeli Company\?$/. Special cases retained: Run:AI, RAID: Shadow Legends, Microsoft Xbox, Microsoft Gaming — the brand name may contain punctuation.Health Tech & Life Sciences (note &). Decode entities before display.X-Robots-Tag: noindex is set on the /wp-json/ responses. The endpoints work, but Google won't have them — don't expect Google site-search to cover the API surface.__cf_bm challenge issuance; if you hit a 403 on /wp-json/, retry with browse cloud fetch --proxies (residential IP) rather than naked curl. No challenge was observed during ~20 sequential test calls without proxies.--verified or --proxies for the recommended API path, but enabling them for HTML detail fetches is cheap insurance if you parallelize.movies, alternatives, public-figures per the sitemap), but they're NOT registered in /wp-json/wp/v2/types and not reachable as /wp-json/wp/v2/{type}. They are NOT part of the brand tech-sector catalog — do not include them in tech-company results.excerpt and In the News fields can contain politically charged blurbs (e.g. "Continues to fire employees for protesting against the company's complicity in the genocide" on the Microsoft entry). Surface them verbatim; do not editorialize. The skill returns whatever the site has on record.Yes, No, Partially. Don't hardcode a boolean enum; preserve the string.per_page=100, the Health Tech & Life Sciences tag (1,568 posts) needs 16 page requests. The site happily serves them sequentially; budget ~20 calls per large tag./wp-json/wp/v2/*. The ?s= URL-param search is WordPress core, not a separate API.{
"query": { "sector": "all-tech", "tag_ids": [4, 6172, 6170, 6171, 6165, 6169, 6174, 6176, 6173] },
"total_unique_brands": 4928,
"brands": [
{
"id": 33500,
"brand": "TikTok",
"slug": "is-tiktok-an-israeli-company",
"url": "https://israeli.company/is-tiktok-an-israeli-company/",
"tag_ids": [4, 6165],
"tag_names": ["Technology", "Media & Entertainment Technologies"]
},
{
"id": 1865,
"brand": "Microsoft",
"slug": "is-microsoft-an-israeli-company",
"url": "https://israeli.company/is-microsoft-an-israeli-company/",
"tag_ids": [807, 809, 943],
"tag_names": ["Electronics", "Computers accessories", "Laptops desktops"]
}
]
}
{
"query": { "sector": "fintech-insurtech", "tag_id": 6169 },
"total": 392,
"brands": [
{
"id": 1865,
"brand": "Microsoft",
"url": "https://israeli.company/is-microsoft-an-israeli-company/",
"details": {
"verdict": "No",
"multinational": "Yes",
"founded": "1975",
"founders": ["Bill Gates", "Paul Allen"],
"parent_company": null,
"child_companies": ["Windows", "Office", "Xbox", "Azure", "Surface"],
"headquarters": "Redmond, Washington, USA",
"belongs_to": ["Electronics", "Computers accessories", "Laptops desktops"],
"in_the_news": "Continues to fire employees for protesting against the company's complicity in the genocide.",
"verified": false
}
}
]
}
{
"brand": "Microsoft",
"found": true,
"url": "https://israeli.company/is-microsoft-an-israeli-company/",
"verdict": "No",
"is_israeli": false,
"has_israeli_ties_documented": true,
"details": { "...same as Shape B.details..." }
}
{
"brand": "ExampleCorp",
"found": false,
"searched": "https://israeli.company/wp-json/wp/v2/posts?search=ExampleCorp",
"message": "No matching brand entry in the israeli.company catalog."
}
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
BuilderIO/skills
ailabs-393/ai-labs-claude-skills
affaan-m/everything-claude-code
kostja94/marketing-skills
kesslerio/academic-deep-research-clawhub-skill
davila7/claude-code-templates
Registry listing for find-tech-companies matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: find-tech-companies is the kind of skill you can hand to a new teammate without a long onboarding doc.
find-tech-companies has been reliable in day-to-day use. Documentation quality is above average for community skills.
Useful defaults in find-tech-companies — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
find-tech-companies fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
I recommend find-tech-companies for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
We added find-tech-companies from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Solid pick for teams standardizing on skills: find-tech-companies is focused, and the summary matches what you get after install.
Registry listing for find-tech-companies matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: find-tech-companies is the kind of skill you can hand to a new teammate without a long onboarding doc.
showing 1-10 of 61