Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
agent-scanning — Unified dashboard to monitor, govern, and audit AI agents in real-time. Enforce budgets, detect policy violations, and export compliance reports for SOC 2 and ISO 42001. | Kitploit
Tools/GitHubGitHub/vigil-xy/agent-scanning
Cloud SecurityThreat IntelligenceIncident ResponseAPI SecurityAI Security
GitHubvigil-xy/agent-scanning

agent-scanning

Unified dashboard to monitor, govern, and audit AI agents in real-time. Enforce budgets, detect policy violations, and export compliance reports for SOC 2 and ISO 42001.

View Repository
6335 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Control your AI agents. Track costs. Stay compliant. open-souce


What It Does

One dashboard to manage your AI team.

FeatureHow It Helps
Connect your agentsPlug in OpenAI, Anthropic, or custom agents
Set goals & budgetsAssign work, cap costs, define success
Watch in real-timeSee what every agent is doing right now
Get alertsSlack, email, or PagerDuty when something's off
Prove complianceExport audit trails for SOC 2, ISO 42001

Quick Start (5 Minutes)

1. Start the database

root@kitploit:~
docker compose up -d postgres

2. Install & configure

root@kitploit:~
npm install
cp apps/api/.env.example apps/api/.env
cp apps/web/.env.example apps/web/.env

Or run one command:

root@kitploit:~
npm run setup:local

3. Run it

root@kitploit:~
# Terminal 1: API
npm run dev:api

# Terminal 2: Dashboard
npm run dev:web

Or run both in one terminal:

root@kitploit:~
npm run dev:all

4. Open http://localhost:5173

Verify Everything Is Connected

root@kitploit:~
npm run check:stack

If API + web are running, seed demo data:

root@kitploit:~
npm run seed:demo

Troubleshooting (macOS)

1) cp .env.example ... fails

Use the correct paths from repo root:

root@kitploit:~
cp apps/api/.env.example apps/api/.env
cp apps/web/.env.example apps/web/.env

2) Cannot connect to the Docker daemon

  • Start Docker Desktop
  • Wait until Docker says it is running
  • Retry:
root@kitploit:~
docker compose up -d postgres

3) API error ECONNREFUSED ... :5432

PostgreSQL is not reachable. Confirm:

root@kitploit:~
docker compose ps

Then restart API:

root@kitploit:~
npm run dev:api

Example: Customer Support Team

Create a team

root@kitploit:~
POST /api/teams
{
  "name": "Support Squad",
  "agents": [
    { "provider": "openai", "model": "gpt-4", "role": "triage" },
    { "provider": "anthropic", "model": "claude-3", "role": "escalation" }
  ],
  "goals": [
    { "metric": "response_time", "target": "< 2 min" }
  ]
}

Assign work

root@kitploit:~
POST /api/tasks
{
  "team_id": "<your-team-id>",
  "description": "Handle refund requests",
  "budget": { "usd": 5.00, "tokens": 10000 },
  "policies": ["no_pii_exposure", "enforce_budget_limits"]
}

Get alerts when agents go off-script

  • Budget exceeded -> Slack notification
  • Unauthorized tool -> Email alert + auto-stop
  • PII detected -> PagerDuty escalation

Export compliance reports

root@kitploit:~
GET /api/compliance/report?type=SOC_2_Type_II

Dashboard

ScreenWhat You See
OverviewAll teams, active agents, cost burn today
AgentsAdd/edit teams, connect providers
TasksQueue, assign work, monitor progress
CostsBudgets, spend trends, forecasts
GovernancePolicy violations, audit logs
AlertsReal-time feed, escalation history

Built With

  • Backend: Node.js + Express + PostgreSQL
  • Frontend: React + Vite
  • Integrations: OpenAI, Anthropic, Slack, PagerDuty, email

Ready to control your AI team?

Download Tool