by ansvisor
Open-source AI Search Intelligence Platform — track, analyze, and improve AI visibility, citations, prompts, competitors, and content opportunities across ChatGPT, Claude, Gemini, Google AI Overviews, Google AI Mode, Perplexity, Grok, and Microsoft Copilot.
# Add to your Claude Code skills
git clone https://github.com/ansvisor/ansvisorLast scanned: 8/24/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-08-24T04:43:10.736Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}ansvisor is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by ansvisor. Open-source AI Search Intelligence Platform — track, analyze, and improve AI visibility, citations, prompts, competitors, and content opportunities across ChatGPT, Claude, Gemini, Google AI Overviews, Google AI Mode, Perplexity, Grok, and Microsoft Copilot. It has 101 GitHub stars.
Yes. ansvisor passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/ansvisor/ansvisor" and add it to your Claude Code skills directory (see the Installation section above).
ansvisor is primarily written in TypeScript. It is open-source under ansvisor on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh ansvisor against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
Official Website · Documentation
Business Data + AI Behavior → Intelligence → Opportunities → Actions
Ansvisor is an open-source AI Search Intelligence Platform that helps brands understand, measure, and improve their visibility across AI Search.
Connect business data and traditional search signals with AI Search behavior across ChatGPT, Google AI Overviews, Google AI Mode, Gemini, Claude, Perplexity, Microsoft Copilot, Grok, and other AI platforms to discover opportunities, prioritize what matters, and improve brand visibility.
Track prompts, mentions, citations, competitors, AI traffic, and the sources AI systems rely on — all in one platform.
Self-host Ansvisor for free or use the managed Ansvisor Cloud.
We're building Ansvisor in the open because we believe companies shouldn't need another black box to understand a black box.
Our goal is to make AI Search intelligence more transparent, measurable, actionable, and accessible.
⭐ If you believe AI Visibility should be open and community-driven, star the repo — it's how the next team discovers Ansvisor.
AI Search is changing how people discover, evaluate, and choose brands, making Answer Engine Optimization (AEO), Generative Engine Optimization (GEO), and AI SEO increasingly important for improving brand visibility in AI-generated answers.
Traditional search data tells you how people find you through search engines. AI Search introduces another layer: how AI systems understand your brand, which sources they trust, when they mention or cite you, how competitors appear, and which prompts influence discovery.
Ansvisor brings these signals together.
With Ansvisor, you can:
The result is a clearer path from fragmented data to useful intelligence:
Business Data + AI Behavior → Intelligence → Opportunities → Actions
Ansvisor is built for teams that want transparency, flexibility, and control.
You can inspect the code, understand how the platform works, contribute to its development, and deploy it on your own infrastructure.
Or use Ansvisor Cloud without managing infrastructure yourself.
Whether you're an enterprise, agency, e-commerce brand, SaaS company, startup, or developer, Ansvisor provides an intelligence layer for understanding and improving your presence across AI Search.
Ansvisor helps you monitor and analyze brand visibility across:
AI Search is still evolving, and we don't believe its measurement and optimization should happen behind another black box.
We're building Ansvisor together with our open-source community around a few simple principles:
Developers, marketers, SEO/AEO/GEO practitioners, researchers, agencies, and companies are welcome to contribute.
You can help by:
The fastest way to get started without managing infrastructure.
Deploy Ansvisor on your own infrastructure and maintain control over your environment and data.
AI Search shouldn't become another ecosystem where companies have to rely entirely on opaque tools, unexplained scores, and assumptions.
We're building Ansvisor to help companies understand what happens between a user's prompt and an AI-generated answer — from the questions people ask and the sources AI systems use to citations, mentions, competitors, traffic, and opportunities.
Our goal is to move beyond visibility monitoring toward intelligence that helps teams understand where opportunities exist, why they matter, and what to improve next.
Business Data + AI Behavior → Intelligence → Opportunities → Actions
| Service | Purpose | Where to get |
|---|---|---|
| Supabase | Database, Auth, API | supabase.com |
| AI Provider (at least one) | Brand tracking across AI engines | OpenAI / Google Gemini / Anthropic |
| Cloro | Web scraping for AI platform responses | cloro.ai |
| Service | Purpose | Where to get |
|---|---|---|
| DataForSEO | Keyword volume data for prompt analysis | dataforseo.com |
| Scrape.do | Page fetching for Site Audit (proxy + JS render); required only if you use Site Audit | scrape.do |
| Stripe | Payments (cloud mode only, not needed for self-hosted) | stripe.com |
git clone https://github.com/ansvisor/ansvisor.git
cd ansvisor
cp web/.env.example web/.env.local
cp server/.env.example server/.env
Edit both .env files and fill in your credentials. See the comments in each file for guidance.
Run the migration SQL to create all tables, indexes, RLS policies, and triggers:
Option A — Supabase Dashboard (fresh install, one paste):
supabase/schema.sql — the full schema (every migration in one file) — and click RunOption B — Supabase CLI:
npx supabase link --project-ref <YOUR_PROJECT_REF>
npx supabase db push
supabase/schema.sqlis a generated convenience for fresh installs. The numbered files undersupabase/migrations/stay the source of truth and the upgrade path — an existing install adds only the new migration(s) (ordb push). Regenerate the consolidated file after adding a migration withbash supabase/build-schema.sh.
For local development, supabase/seed.sql ships a small fixture (one demo org, brand, prompts, ~120 prompt results across all tracked engines, competitors, content opportunities, AI traffic logs). It runs automatically the next time you do:
npx supabase db rese