Ultimate-TypeScript-Real-World-AI-Projects

by rajudandigamVerified

250+ real-world TypeScript AI projects: workflows, agents, and multi-agent systems with production-ready architecture, not chatbot demos.

137
Stars
128
Forks
TypeScript
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/rajudandigam/Ultimate-TypeScript-Real-World-AI-Projects

Getting Started

Guides for using skills like Ultimate-TypeScript-Real-World-AI-Projects.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

263 Ultimate TypeScript Real-World AI Projects

Engineers collaborating on TypeScript AI workflows, agents, and multi-agent systems.

263 blueprint-grade workflows, agents, and multi-agent systems — TypeScript-first. The Project catalog is documentation you can build from; only selected paths also have runnable reference code under reference-implementations/.

Most AI repos stop at call an API and hope it works. Plenty of content teaches SDK calls; far less shows how to ship systems that hold up in production. This repo goes further: real system design — not chatbot demos.

If you are trying to level up:

  • Prompts → systems
  • Demos → production

How This Repository Is Organized

This repository has two layers:

Most projects are blueprints only (documentation you implement in your own codebase). Selected catalog ideas become runnable reference implementations that share @repo/* packages and tests — not a promise that all 263 rows ship as code in this repo.

flowchart TD
    A[README Project Catalog] --> B[Blueprint Projects]
    A --> C[Learning Docs]
    A --> D[Top Projects]

    B --> B1[projects/domain/project/README.md]
    B --> B2[projects/domain/project/architecture.md]

    C --> C1[Learning Path]
    C --> C2[Production Patterns]
    C --> C3[Contribution Guides]

    D --> E[Reference Implementations]
    E --> E1[AI Cost Monitoring Engine]
    E --> E2[Future: Multi-Agent Incident Response]
    E --> E3[Future: Enterprise RAG Platform]

    E --> F[Shared Packages]
    F --> F1["@repo/core"]
    F --> F2["@repo/governance"]
    F --> F3["@repo/evals"]

    E --> G[Benchmarks]
    G --> G1[Methodology]
    G --> G2[Benchmark Suites]
    G --> G3[Local Results]

    E --> H[CI / Quality Gates]

Production Reference Architecture Layer

This repository remains catalog-first. The Project catalog (263 blueprint rows) is the main learning resource: every entry points at projects/<domain>/<slug>/ with README.md (problem, stack, evaluation, failure modes) and architecture.md (diagrams and engineering depth). Nothing here replaces that contract with a second registry.

Alongside the catalog, an additive production reference architecture layer helps you go from “what to build” to “how it can look in TypeScript” without pretending every blueprint is shipping code:

  • Selected runnable references — a small, growing set of clone-and-run slices under reference-implementations/ that mirror specific catalog paths. They demonstrate ingestion, rollups, governance hooks, and similar patterns you can adapt; they are not a completeness matrix for all 263 ideas.
  • Shared packages — reusable libraries under packages/ (@repo/core, @repo/governance, @repo/evals) for runtime and governance primitives. These are building blocks and documentation-backed patterns — not compliance certifications (see each package README).
  • Benchmarks — a transparent harness in benchmarks/ with explicit methodology (benchmarks/methodology.md): local timings, environment metadata, and no implied SLAs or competitive “wins” without controlled reproduction.

Roadmap and boundaries: docs/PRODUCTION_REFERENCE_ARCHITECTURE_PLAN.md.

First flagship (runnable): reference-implementations/ai-cost-monitoring-engine — companion to the blueprint projects/devtools/ai-cost-monitoring-engine.

Blueprint Catalog

263 project ideas, each with README.md + architecture.md under projects/. The catalog tables below are the authoritative registry.

Reference Implementations

Selected runnable systems that exercise shared packages and show production-shaped wiring (observability seams, governance integration, honest limitations). They link back to catalog paths for context; they do not renumber or replace catalog rows.

Shared Packages

Reusable TypeScript modules (@repo/core, @repo/governance, @repo/evals) shared by reference apps and future flagships — narrow APIs, strict typing, tests where code exists. Prefer extending these over copy-pasting patterns into every new implementation.

CI and local checks (production layer)

GitHub Actions: .github/workflows/production-reference-ci.yml runs on push and pull_request to main: install pnpm, install dependencies, pnpm run typecheck, pnpm test, and a benchmark smoke (@repo/benchmarks cost-monitoring suite with mock-only data — no API keys, no external LLM calls).

Run tests locally (repository root):

pnpm install
pnpm run typecheck
pnpm test

Run benchmarks locally

  • Shared harness (benchmarks/) — cost monitoring suite (writes timestamped artifacts under benchmarks/results/ unless gitignored):
cd benchmarks
pnpm suite:cost-monitoring
# optional: faster smoke
BENCHMARK_ITERATIONS=5 COST_MONITORING_EVENT_SCALE=20 pnpm suite:cost-monitoring
  • Reference-local micro-benchmark (optional, in-package):
cd reference-implementations/ai-cost-monitoring-engine
pnpm benchmark

Interpret timings using benchmarks/methodology.md (local reference only).


Why this repo exists

After building and reviewing real AI products, one wall kept showing up: “We have prompts… now what?” Teams stall at prompt + API call while the product still needs:

  • Orchestration — durable pipelines, handoffs, and control flow
  • Decision-making — agents that choose under constraints, not just generate text
  • Memory — what to retain, retrieve, and forget
  • Failure handling — retries, fallbacks, guardrails, human-in-the-loop
  • Cost vs latency tradeoffs — explicit budgets, not accidental bills

This collection bridges that gap with practical blueprints you can actually build: problems, architecture, TypeScript-friendly stacks, evaluation, failure modes, and scaling — systems thinking applied to AI.


What is inside

CategoryCount
Total projects263
Workflow / workflow-first77
Agent144
Agentic UI (AG-UI)10
Multi-agent32
Level 5 (production-grade target)43

Summary counts match the Project catalog below. Each catalog entry is a blueprint: problem, architecture, TypeScript-oriented stack, evaluation, failure modes, and scaling — not a vague idea list.


How to explore (important)

This repo is catalog-driven (one registry in the README project catalog).

  1. Start with the registry — the Project catalog lists every project once, with system type, complexity (L1–L5), capabilities, and path.
  2. Browse by domain — open projects/ and pick a domain folder (for example projects/devtools/, projects/healthcare/, projects/fintech/, projects/enterprise-ai/, projects/security/, projects/travel/, and many more). Each project slug folder contains README.md and architecture.md.
  3. Slice by system type or level — use the tables in the project catalog (columns System Type and Complexity). There are no separate by-system-type/ or by-complexity/ trees; the catalog is the filter.

Authoring rules for new catalog entries are described in CONTRIBUTING.md.


What you will learn

  • System design for AI — when a durable workflow is enough, when an agent fits, when multiple agents collaborate, and how to structure decision loops safely.
  • Production thinking — cost, latency, observability, guardrails, human-in-the-loop, and regression-style evaluation.
  • Real tradeoffs — accuracy vs cost, autonomy vs control, reasoning depth vs time-to-answer.

Example projects (high signal)

Concrete paths for all of these are in the Project catalog.


Suggested path if you are new


System Types at a Glance

flowchart LR
    W[Workflow] --> W1[Deterministic Steps]
    W --> W2[Predictable Cost]
    W --> W3[High Reliability]

    A[Agent] --> A1[Reasoning]
    A --> A2[Tool Usage]
    A --> A3[Dynamic Decisions]

    M[Multi-Agent] --> M1[Specialized Roles]
    M --> M2[Coordination]
    M --> M3[Complex Workflows]

    U[Agentic UI] --> U1[User + AI Collaboration]
    U --> U2[Interactive State]
    U --> U3[Real-Time Suggestions]

Workflows fit repeatable processes with clear steps. Agents fit when decisions depend on context, tools, and guardrails. Multi-agent fits when several specialized roles must coordinate. Agentic UI fits when the user and AI collaborate inside the product experience (see blueprint batch under projects/agentic-ui/).

TypeRole
WorkflowDeterministic or durable pipelines — predictable, often cheaper, easier to test.
AgentReasoning, tools, and decisions under constraints — flexible, needs guardrails.
Multi-agentSeveral roles collaborating — powerful, highest integration and ops cost.
Agentic UI (AG-UI)Copilots and consoles where UI state, suggestions, and human intent co-evolve with model output.

Complexity levels

LevelMeaning
L1Basic LLM workflows
L2Structured workflows with clearer control flow
L3Agent-based systems with reasoning and tools
L4Multi-step orchestration, memory, or multi-agent coordination
L5Production-grade targets: observability, scaling, cost control, safety

Repository layout

README.md                 # Narrative + full project catalog (this file)
CONTRIBUTING.md           # How to propose or extend catalog entries
package.json              # pnpm workspace root (typecheck / test / lint placeholder)
pnpm-workspace.yaml       # Workspace packages under packages/*
tsconfig.base.json        # Shared strict TypeScript defaults
scripts/enrich_project_docs.py   # Adds stack + architecture layers (idempotent)
scripts/apply_agentic_ui_projects.py + scripts/agentic_ui_projects.json  # Regenerate AG-UI batch (dev)
packages/
  core/                   # @repo/core — runtime primitives (see package README)
  governance/             # @repo/governance — governance primitives
  evals/                  # @repo/evals — evaluation schemas / harness stubs
reference-implementations/  # Runnable flagships (e.g. ai-cost-monitoring-engine); see docs plan
benchmarks/               # @repo/benchmarks harness + suites (see benchmarks/README.md)
docs/
  PRODUCTION_REFERENCE_ARCHITECTURE_PLAN.md  # How the monorepo evolves with the catalog
  production-patterns/    # Cross-cutting production notes (scaffold)
  governance/             # Governance patterns (scaffold)
  benchmarking/           # Benchmark methodology (scaffold)
projects/
  <domain>/               # e.g. devtools, travel, enterprise-ai
    <project-slug>/
      README.md           # Full brief
      architecture.md     # Diagrams and engineering detail

Tech stack (TypeScript-first)

Typical stacks referenced across briefs include Node.js, Next.js, OpenAI / Anthropic, LangChain.js, Vercel AI SDK, Zod, vector stores (e.g. Pinecone, Supabase), and observability (LangSmith, Helicone, and similar). Each project’s README.md narrows this to what fits that system.


Project catalog

This section is the authoritative project registry: purpose, summary counts, every domain table, deduplication notes, and contribution reminders. PROJECT_INDEX.md is a short pointer file for stable links and local search.


🔍 Purpose

This Project catalog section is the single registry for catalog projects in this repository.

  • Avoid duplication: Before starting or documenting a new system, scan the tables below to confirm the idea is not already covered.
  • Balance the catalog: Use it to spot gaps across domains and system types (workflow vs agent vs multi-agent), so the collection stays useful rather than repetitive.
  • Navigate quickly: Each row points to a folder containing README.md (full brief) and architecture.md (diagrams and engineering detail).

📊 Summary

CategoryCount
Total Projects263
Workflow / workflow-first77
Agent144
Agentic UI (AG-UI)10
Multi-Agent32
Level 5 (production-grade target)43

How rows are counted: Each project has one primary row in exactly one domain table. “Workflow / workflow-first” includes systems where a durable workflow is the spine (including hybrid Workflow + Agent or Workflow → Agent designs). Agentic UI (AG-UI) marks blueprints where CopilotKit-style UI↔agent state and co-driven workflows are the spine (not a passive chat wrapper). “Level 5” counts projects whose brief targets Level 5 complexity.


🚀 Projects

Paths are repository-relative. Each path contains README.md and architecture.md.


✈️ Travel

NameSystem TypeComplexityCapabilitiesPath
AI Travel PlannerMulti-AgentL4Planning, RAG, Decision making, Personalizationprojects/travel/ai-travel-planner
AI Trip Personalization EngineAgentL4Personalization, Retrievalprojects/travel/ai-trip-personalization-engine
Multi-Agent Travel Booking OptimizerMulti-AgentL5Decision making, Optimizationprojects/travel/multi-agent-travel-booking-optimizer
AI Travel Cost Prediction SystemAgentL4Prediction, Analyticsprojects/travel/ai-travel-cost-prediction-system
Travel Disruption Response SystemMulti-AgentL4Automation, Decision-makingprojects/travel/travel-disruption-response-system
Corporate Travel Policy EnforcerAgentL4Validation, Decision-makingprojects/travel/corporate-travel-policy-enforcer
Multi-Language Travel ConciergeAgentL3Multilingual, Memoryprojects/travel/multi-language-travel-concierge
Loyalty Program OptimizerAgentL2Optimizationprojects/travel/loyalty-program-optimizer
Sustainable Travel Route PlannerAgentL3Optimization, Analyticsprojects/travel/sustainable-travel-route-planner
Hotel Review Sentiment IntelligenceWorkflowL2Sentiment Analysisprojects/travel/hotel-review-sentiment-intelligence
Travel Budget Assistant (Real-Time)AgentL2Tracking, Personalizationprojects/travel/travel-budget-assistant-real-time
Group Travel Coordination AgentMulti-AgentL4Decision-making, Coordinationprojects/travel/group-travel-coordination-agent
Dynamic Pricing Optimization EngineAgentL3Prediction, Optimizationprojects/travel/dynamic-pricing-optimization-engine

🍽️ Lifestyle

NameSystem TypeComplexityCapabilitiesPath
Group Restaurant Decision AgentMulti-AgentL3Decision making, Coordinationprojects/lifestyle/group-restaurant-decision-agent
Smart Hike Planning AgentAgentL3Planning, Retrievalprojects/lifestyle/smart-hike-planning-agent
Potluck Coordination AgentMulti-AgentL3Coordination, Planningprojects/lifestyle/potluck-coordination-agent
Event Catering Planning SystemAgentL3Planning, Optimizationprojects/lifestyle/event-catering-planning-system
Weekend Activity Planner AgentAgentL3Recommendation, Planningprojects/lifestyle/weekend-activity-planner-agent

🧑‍💻 DevTools

NameSystem TypeComplexityCapabilitiesPath
AI Code Review AgentAgentL3Reasoning, Automation, Retrievalprojects/devtools/ai-code-review-agent
AI Cost Monitoring EngineWorkflow + AgentL5Monitoring, Decision making, Optimizationprojects/devtools/ai-cost-monitoring-engine
PR Risk AnalyzerAgentL3Reasoning, Prediction, Retrievalprojects/devtools/pr-risk-analyzer
AI Workflow BuilderWorkflow + AgentL4Automation, Planningprojects/devtools/ai-workflow-builder
AI Debugging AssistantAgentL4Reasoning, Tool usageprojects/devtools/ai-debugging-assistant
AI CI Failure AnalyzerAgentL3Reasoning, Retrieval, Debuggingprojects/devtools/ai-ci-failure-analyzer
AI Test Case GeneratorWorkflow → AgentL3Generation, Reasoningprojects/devtools/ai-test-case-generator
AI API Contract ValidatorAgentL3Validation, Reasoningprojects/devtools/ai-api-contract-validator
Automated Test Generation AgentAgentL3Generationprojects/devtools/automated-test-generation-agent
Bug Triage & Prioritization AgentAgentL3Classificationprojects/devtools/bug-triage-prioritization-agent
Dependency Security AuditorWorkflowL3Securityprojects/devtools/dependency-security-auditor
Performance Regression DetectorWorkflowL3Monitoringprojects/devtools/performance-regression-detector
Infrastructure Cost Optimization AgentAgentL4Optimizationprojects/devtools/infrastructure-cost-optimization-agent
API Design ValidatorAgentL2Validationprojects/devtools/api-design-validator
Codebase Complexity AnalyzerWorkflowL2Analysisprojects/devtools/codebase-complexity-analyzer
CI/CD Pipeline Optimization AgentAgentL3Optimizationprojects/devtools/cicd-pipeline-optimization-agent
Smart Log Analysis AgentAgentL3Detection, Retrievalprojects/devtools/smart-log-analysis-agent
Long-Running Coding Agent (Task Decomposition Engine)AgentL4Planningprojects/devtools/long-running-coding-task-decomposition-engine
Codebase Migration Automation SystemWorkflowL3Transformationprojects/devtools/codebase-migration-automation-system
REST API Orchestration AgentAgentL3Orchestrationprojects/devtools/rest-api-orchestration-agent
Natural Language ↔ SQL EngineWorkflowL2Translationprojects/devtools/natural-language-sql-engine
IDE Code Completion Agent (Copilot Alternative)AgentL3Generationprojects/devtools/ide-code-completion-agent
Real-Time Conversation Memory SystemWorkflowL2Memoryprojects/devtools/real-time-conversation-memory-system

🧑‍💻 DevTools AI

NameSystem TypeComplexityCapabilitiesPath
Legacy Code Refactor Agent (COBOL to TypeScript)AgentL5Reasoning, Transformationprojects/devtools-ai/legacy-code-refactor-agent-cobol-to-typescript
Schema Migration Safety AgentAgentL3Risk analysis, Reasoningprojects/devtools-ai/schema-migration-safety-agent

🤖 Agentic UI

NameSystem TypeComplexityCapabilitiesPath
AI In-App Product CopilotAgentL4Assistance, Context Awarenessprojects/agentic-ui/ai-in-app-product-copilot
AI Form Filling AssistantAgentL3Automationprojects/agentic-ui/ai-form-filling-assistant
AI Product Analytics Copilot DashboardAgentic UIL4Reasoning, UI interaction, Insights, Streamingprojects/agentic-ui/ai-product-analytics-copilot-dashboard
AI Customer Support Copilot ConsoleAgentic UIL3Retrieval, Suggestions, UI interaction, Streamingprojects/agentic-ui/ai-customer-support-copilot-console
AI Live Log Debugging Copilot UIAgentic UIL4Reasoning, Tool usage, Streaming, UI interactionprojects/agentic-ui/ai-live-log-debugging-copilot-ui
AI Financial Planning Copilot Dashboard (Interactive)Agentic UIL4Personalization, Prediction, UI interaction, Streamingprojects/agentic-ui/ai-financial-planning-copilot-dashboard
AI Travel Planning Workspace (Interactive Builder)Agentic UIL4Planning, Personalization, UI interaction, Streamingprojects/agentic-ui/ai-travel-planning-workspace-copilot
AI Hiring Decision Copilot (Recruiter UI)Agentic UIL3Matching, Reasoning, UI interaction, Streamingprojects/agentic-ui/ai-recruiter-hiring-copilot-ui
AI Knowledge Workspace (Notion-style with Agent)Agentic UIL4Retrieval, Memory, UI interaction, Streamingprojects/agentic-ui/ai-knowledge-workspace-copilot
AI E-commerce Merchandising Copilot DashboardAgentic UIL4Optimization, Insights, UI interaction, Streamingprojects/agentic-ui/ai-merchandising-copilot-dashboard
AI Personal Health Insights Dashboard (Personalized)Agentic UIL4Analysis, Personalization, UI interaction, Streamingprojects/agentic-ui/ai-personal-health-insights-copilot-dashboard
AI Learning Copilot (Interactive Study UI)Agentic UIL3Tutoring, Adaptation, UI interaction, Streamingprojects/agentic-ui/ai-interactive-study-copilot-ui

Note: AI Live Log Debugging Copilot UI is the AG-UI + live log stream blueprint; projects/devtools/ai-debugging-assistant remains the general code/debug agent pattern. AI Travel Planning Workspace is the collaborative itinerary board; projects/travel/ai-travel-planner remains the multi-agent supplier orchestration reference—compose them if you want both.


🧩 Platform

NameSystem TypeComplexityCapabilitiesPath
Agentic Workflow Builder (n8n-style AI Platform)Multi-AgentL4Orchestration, Automationprojects/platform/agentic-workflow-builder-platform
Cross-Platform Computer Use Automation SystemAgentL4Automation, Tool usageprojects/platform/cross-platform-computer-use-automation-system
Collaborative Multi-Agent Workspace PlatformMulti-AgentL4Collaboration, Orchestrationprojects/platform/collaborative-multi-agent-workspace-platform

🎨 Frontend

NameSystem TypeComplexityCapabilitiesPath
Generative UI Component SystemAgentL3Generation, Personalizationprojects/frontend/generative-ui-component-system

⚙️ Workflows

NameSystem TypeComplexityCapabilitiesPath
Email to Task WorkflowWorkflowL2–L3Automation, Extraction, Decision makingprojects/workflows/email-to-task-workflow
AI Document Processing PipelineWorkflowL3Extraction, Automationprojects/workflows/ai-document-processing-pipeline
AI Email Automation EngineWorkflow → AgentL3Automationprojects/workflows/ai-email-automation-engine
AI Customer Support Ticket RouterWorkflowL3Classificationprojects/workflows/ai-customer-support-ticket-router

🧭 Productivity

NameSystem TypeComplexityCapabilitiesPath
AI Meeting CopilotAgentL3Summarization, Decision making, Memoryprojects/productivity/ai-meeting-copilot
Meeting Notes → Action WorkflowWorkflowL2–L3Extraction, Automationprojects/productivity/meeting-notes-action-workflow
AI Spreadsheet CopilotAgentL4Analysisprojects/productivity/ai-spreadsheet-copilot
Smart Calendar Scheduling AgentAgentL3Optimizationprojects/productivity/smart-calendar-scheduling-agent
Intelligent Email Drafting AssistantAgentL2Generationprojects/productivity/intelligent-email-drafting-assistant
Project Status Aggregation SystemWorkflowL2Aggregationprojects/productivity/project-status-aggregation-system
Focus Time Protection AgentAgentL2Automationprojects/productivity/focus-time-protection-agent
Team Workload Optimization AgentAgentL3Optimizationprojects/productivity/team-workload-optimization-agent
Slack/Teams Intelligent Summarization SystemWorkflowL2Summarization, Automationprojects/productivity/slack-teams-intelligent-summarization-system
Freelancer Workday Optimization AgentAgentL3Planning, Predictionprojects/productivity/freelancer-workday-optimization-agent

🎧 Support

NameSystem TypeComplexityCapabilitiesPath
Multi-Channel Support Routing AgentAgentL3Routingprojects/support/multi-channel-support-routing-agent
Knowledge Base Auto-Curation SystemWorkflowL2Generationprojects/support/knowledge-base-auto-curation-system
SLA Compliance Monitoring SystemWorkflowL2Monitoringprojects/support/sla-compliance-monitoring-system
Customer Journey Intelligence AgentAgentL3Predictionprojects/support/customer-journey-intelligence-agent
Automated Refund Decision EngineWorkflowL2Decision-makingprojects/support/automated-refund-decision-engine

🛠️ DevOps

NameSystem TypeComplexityCapabilitiesPath
Multi-Agent Incident Response SystemMulti-AgentL5Planning, Automation, Decision makingprojects/devops/multi-agent-incident-response-system
Multi-Agent DevOps AssistantMulti-AgentL5Automation, Decision makingprojects/devops/multi-agent-devops-assistant

💳 Fintech

NameSystem TypeComplexityCapabilitiesPath
AI Expense Categorization + InsightsWorkflow → AgentL3Classification, Retrieval, Personalizationprojects/fintech/ai-expense-categorization-insights
Real-Time Fraud Detection WorkflowWorkflowL2Detectionprojects/fintech/real-time-fraud-detection-workflow
KYC Document Processing SystemWorkflowL3OCR, Validationprojects/fintech/kyc-document-processing-system
Personalized Investment Advisor AgentAgentL4Planning, Predictionprojects/fintech/personalized-investment-advisor-agent
Expense Report Automation SystemWorkflowL2Automationprojects/fintech/expense-report-automation-system
Credit Risk Assessment AgentAgentL4Risk Analysisprojects/fintech/credit-risk-assessment-agent
Algorithmic Trading Strategy ValidatorMulti-AgentL5Simulation, Optimizationprojects/fintech/algorithmic-trading-strategy-validator
AML Investigation Multi-Agent SystemMulti-AgentL5Detection, Analysisprojects/fintech/aml-investigation-multi-agent-system
Intelligent Payment Routing AgentAgentL3Optimizationprojects/fintech/intelligent-payment-routing-agent
Financial Document Q&A SystemAgentL3Retrieval, Reasoningprojects/fintech/financial-document-qa-system
Regulatory Compliance MonitorWorkflowL3Monitoring, Validationprojects/fintech/regulatory-compliance-monitor
Personal Budget AssistantAgentL2Personalization, Analyticsprojects/fintech/personal-budget-assistant
Invoice Processing & Reconciliation SystemWorkflowL2Extraction, Matchingprojects/fintech/invoice-processing-reconciliation-system
FinGPT Financial Intelligence AgentAgentL4Prediction, Sentimentprojects/fintech/fingpt-financial-intelligence-agent
Reinforcement Learning Trading AgentAgentL5Learning, Optimizationprojects/fintech/reinforcement-learning-trading-agent
Cryptocurrency Portfolio ManagerAgentL3Optimization, Trackingprojects/fintech/cryptocurrency-portfolio-manager

🏥 Healthcare

NameSystem TypeComplexityCapabilitiesPath
Patient Intake Automation SystemWorkflowL2Extraction, Automationprojects/healthcare/patient-intake-automation-system
Medical Imaging Analysis AssistantAgentL4Computer vision, Detectionprojects/healthcare/medical-imaging-analysis-assistant
Clinical Trial Matching AgentAgentL3Matching, Retrievalprojects/healthcare/clinical-trial-matching-agent
Drug Interaction CheckerWorkflowL2Validationprojects/healthcare/drug-interaction-checker
Medical Coding & Billing AssistantWorkflowL3Classificationprojects/healthcare/medical-coding-billing-assistant
Mental Health Support AgentAgentL3Conversational, Monitoringprojects/healthcare/mental-health-support-agent
Hospital Resource Optimization SystemMulti-AgentL5Optimization, Planningprojects/healthcare/hospital-resource-optimization-system
Medication Adherence Monitoring SystemWorkflowL2Monitoringprojects/healthcare/medication-adherence-monitoring-system
Health Data Interoperability (FHIR Agent System)AgentL4Integrationprojects/healthcare/health-data-interoperability-fhir-agent-system
Clinical Note Generation AgentAgentL3Generation, Speechprojects/healthcare/clinical-note-generation-agent
Clinical Decision Support SystemAgentL4Reasoning, Retrievalprojects/healthcare/clinical-decision-support-system
Remote Patient Monitoring Intelligence AgentAgentL3Monitoring, Predictionprojects/healthcare/remote-patient-monitoring-intelligence-agent

🧾 Finance

NameSystem TypeComplexityCapabilitiesPath
Invoice Processing PipelineWorkflowL3Extraction, Classificationprojects/finance/invoice-processing-pipeline

⚖️ Legal

NameSystem TypeComplexityCapabilitiesPath
Regulatory Change Impact AnalyzerWorkflowL3Monitoringprojects/legal/regulatory-change-impact-analyzer
Contract Clause Extraction SystemWorkflowL2Extractionprojects/legal/contract-clause-extraction-system
Privacy Impact Assessment AgentAgentL3Complianceprojects/legal/privacy-impact-assessment-agent
Litigation Risk Prediction AgentAgentL4Predictionprojects/legal/litigation-risk-prediction-agent
Due Diligence Multi-Agent SystemMulti-AgentL4Research, Reasoningprojects/legal/due-diligence-multi-agent-system

⚖️ Legal AI

NameSystem TypeComplexityCapabilitiesPath
Contract Redlining Automation AgentAgentL3Reasoning, Decision makingprojects/legal-ai/contract-redlining-automation-agent

💼 Sales

NameSystem TypeComplexityCapabilitiesPath
AI Sales AssistantAgentL3Personalization, Decision makingprojects/sales/ai-sales-assistant

🎓 Education

NameSystem TypeComplexityCapabilitiesPath
AI Learning TutorAgentL3Personalization, Reasoningprojects/education/ai-learning-tutor
AI Personalized Learning Path GeneratorAgentL4Planning, Personalizationprojects/education/ai-personalized-learning-path-generator
AI Homework Assistant with ReasoningAgentL3Reasoningprojects/education/ai-homework-assistant-with-reasoning
Multi-Agent Tutoring SystemMulti-AgentL5Teaching, Adaptationprojects/education/multi-agent-tutoring-system
Automated Essay Grading SystemAgentL3Evaluationprojects/education/automated-essay-grading-system
Student Engagement Prediction SystemWorkflowL2Predictionprojects/education/student-engagement-prediction-system
Automated Question Generation AgentAgentL2Generationprojects/education/automated-question-generation-agent
Peer Learning Group MatcherAgentL2Matchingprojects/education/peer-learning-group-matcher

🧑‍🤝‍🧑 Personal AI

NameSystem TypeComplexityCapabilitiesPath
Personal AI Life AssistantAgentL5Memory, Planningprojects/personal-ai/personal-ai-life-assistant
AI Habit Tracking + Coaching SystemAgentL4Monitoring, Feedbackprojects/personal-ai/ai-habit-tracking-coaching-system
AI Daily Planner with MemoryWorkflow → AgentL4Planning, Memoryprojects/personal-ai/ai-daily-planner-with-memory
Weekly Grocery Optimization AgentAgentL3Optimization, Personalizationprojects/personal-ai/weekly-grocery-optimization-agent
Home Maintenance Intelligence SystemAgentL3Prediction, Planningprojects/personal-ai/home-maintenance-intelligence-system
Bill Splitting & Fairness Optimization AgentAgentL3Optimization, Decision makingprojects/personal-ai/bill-splitting-fairness-optimization-agent
Personalized Career Pivot CoachAgentL3Personalization, Planningprojects/personal-ai/personalized-career-pivot-coach
Life Timeline Intelligence AgentAgentL3Memory, Personalizationprojects/personal-ai/life-timeline-intelligence-agent

👨‍👩‍👧 Family

NameSystem TypeComplexityCapabilitiesPath
School Morning Routine PlannerAgentL2Planning, Automationprojects/family/school-morning-routine-planner
Kids Activity & Learning Planner AgentAgentL3Personalization, Planningprojects/family/kids-activity-learning-planner-agent

🔐 Security

NameSystem TypeComplexityCapabilitiesPath
AI Phishing Detection SystemAgentL4Classification, Detectionprojects/security/ai-phishing-detection-system
AI Threat Intelligence AggregatorAgentL5Retrieval, Analysisprojects/security/ai-threat-intelligence-aggregator
Multi-Agent Cyber Defense SystemMulti-AgentL5Detection, Responseprojects/security/multi-agent-cyber-defense-system
AI Content Moderation EngineWorkflow → AgentL4Classificationprojects/security/ai-content-moderation-engine
AI Identity Verification SystemWorkflowL4Verificationprojects/security/ai-identity-verification-system
Security Vulnerability Scanner SystemWorkflowL3Detection, Automationprojects/security/security-vulnerability-scanner-system
Threat Intelligence Aggregation PlatformMulti-AgentL4Monitoring, Retrievalprojects/security/threat-intelligence-aggregation-platform
System-Wide Anomaly Detection EngineWorkflowL3Detection, Monitoringprojects/security/system-wide-anomaly-detection-engine
Incident Triage & Automated Response SystemMulti-AgentL4Orchestration, Automationprojects/security/incident-triage-automated-response-system
Compliance Audit Automation PlatformWorkflowL3Compliance, Automationprojects/security/compliance-audit-automation-platform
Autonomous Penetration Testing Agents (PentAGI)Multi-AgentL5Simulation, Automationprojects/security/autonomous-penetration-testing-agents-pentagi
Continuous Security Posture Assessment AgentAgentL3Monitoring, Reasoningprojects/security/continuous-security-posture-assessment-agent
Data Loss Prevention (DLP) Intelligence AgentAgentL3Detection, Reasoningprojects/security/dlp-intelligence-agent

🌐 Web3

NameSystem TypeComplexityCapabilitiesPath
AI Smart Contract AuditorAgentL5Analysis, Securityprojects/web3/ai-smart-contract-auditor
AI DAO Governance AssistantAgentL4Decision-makingprojects/web3/ai-dao-governance-assistant

🏭 IoT

NameSystem TypeComplexityCapabilitiesPath
AI Smart Home Automation AgentAgentL4Automationprojects/iot/ai-smart-home-automation-agent
Multi-Agent Smart City Traffic SystemMulti-AgentL5Optimizationprojects/iot/multi-agent-smart-city-traffic-system
IoT Fleet Intelligence Management AgentAgentL3Monitoring, Reasoningprojects/iot/iot-fleet-intelligence-management-agent

🎮 Gaming

NameSystem TypeComplexityCapabilitiesPath
AI NPC Behavior EngineAgentL4Reasoningprojects/gaming/ai-npc-behavior-engine
Multi-Agent Game Strategy SimulatorMulti-AgentL5Strategy, Simulationprojects/gaming/multi-agent-game-strategy-simulator

🎤 Voice

NameSystem TypeComplexityCapabilitiesPath
Real-Time Voice AI AssistantAgentL5Speech, Reasoningprojects/voice/real-time-voice-ai-assistant
AI Call Center Automation SystemWorkflow → AgentL5Automationprojects/voice/ai-call-center-automation-system

🎙️ AI Interface

NameSystem TypeComplexityCapabilitiesPath
Voice-First AI Interaction SystemAgentL3Interaction, Automationprojects/ai-interface/voice-first-ai-interaction-system

📣 Marketing

NameSystem TypeComplexityCapabilitiesPath
Multi-Agent Marketing Campaign SystemMulti-AgentL4Planning, Content Generationprojects/marketing/multi-agent-marketing-campaign-system
Lead Scoring & Qualification AgentAgentL3Prediction, Personalizationprojects/marketing/lead-scoring-qualification-agent
Personalized Email Campaign GeneratorAgentL3Generation, Personalizationprojects/marketing/personalized-email-campaign-generator
Ad Creative Optimization AgentAgentL3Optimization, Generationprojects/marketing/ad-creative-optimization-agent
Content Marketing Strategy AgentAgentL3Planning, Retrievalprojects/marketing/content-marketing-strategy-agent
Sales Forecasting Intelligence SystemAgentL3Prediction, Analyticsprojects/marketing/sales-forecasting-intelligence-system
Competitive Intelligence Monitoring AgentAgentL3Monitoring, Retrievalprojects/marketing/competitive-intelligence-monitoring-agent
Social Media Content Automation AgentAgentL2Generation, Personalizationprojects/marketing/social-media-content-automation-agent

📰 Media

NameSystem TypeComplexityCapabilitiesPath
AI News Personalization EngineAgentL3Personalizationprojects/media/ai-news-personalization-engine
Automated Video Editing AgentAgentL3Multimodal, Generationprojects/media/automated-video-editing-agent
Podcast Insight Extraction AgentAgentL2Extraction, Summarizationprojects/media/podcast-insight-extraction-agent
Plagiarism & Copyright Detection SystemWorkflowL2Detection, Monitoringprojects/media/plagiarism-copyright-detection-system
Automated Subtitle Generation SystemWorkflowL2Multimodal, Automationprojects/media/automated-subtitle-generation-system
Content Performance Prediction AgentAgentL3Prediction, Analyticsprojects/media/content-performance-prediction-agent

📈 Analytics

NameSystem TypeComplexityCapabilitiesPath
AI Analytics Query AssistantAgentL4Retrieval, Query Generationprojects/analytics/ai-analytics-query-assistant

🏢 Enterprise

NameSystem TypeComplexityCapabilitiesPath
RAG-based Internal Docs AssistantAgentL4Retrieval, Reasoningprojects/enterprise/rag-internal-docs-assistant
AI CRM Copilot (Sales Assistant)AgentL4Decision-making, Retrievalprojects/enterprise/ai-crm-copilot-sales-assistant
AI Business Strategy SimulatorMulti-AgentL5Simulation, Decision-makingprojects/enterprise/ai-business-strategy-simulator
AI Scenario Planning EngineAgentL4Predictionprojects/enterprise/ai-scenario-planning-engine

🏢 Enterprise AI

NameSystem TypeComplexityCapabilitiesPath
Enterprise RAG Knowledge Platform (Permission-Aware)AgentL4Retrieval, Reasoningprojects/enterprise-ai/enterprise-rag-knowledge-platform
Organizational Memory Graph BuilderAgentL4Knowledge graph, Retrievalprojects/enterprise-ai/organizational-memory-graph-builder

🛒 E-commerce

NameSystem TypeComplexityCapabilitiesPath
Multi-Agent Pricing OptimizerMulti-AgentL5Decision making, Optimizationprojects/ecommerce/multi-agent-pricing-optimizer
AI Pricing Experimentation PlatformAgentL4Experimentationprojects/ecommerce/ai-pricing-experimentation-platform
AI Shopping Assistant (Conversational Commerce)AgentL4Recommendationprojects/ecommerce/ai-shopping-assistant-conversational-commerce
Visual Search & Style Matching EngineAgentL3Multimodal, Retrievalprojects/ecommerce/visual-search-style-matching-engine
Smart Cart Optimization AgentAgentL2Recommendationprojects/ecommerce/smart-cart-optimization-agent
Size & Fit Recommendation AgentAgentL3Predictionprojects/ecommerce/size-fit-recommendation-agent
Competitive Price Monitoring SystemWorkflowL2Monitoringprojects/ecommerce/competitive-price-monitoring-system
Return Fraud Detection SystemWorkflowL3Detectionprojects/ecommerce/return-fraud-detection-system
Multi-Channel Inventory Sync SystemWorkflowL2Synchronizationprojects/ecommerce/multi-channel-inventory-sync-system
Abandoned Cart Recovery AgentAgentL2Personalizationprojects/ecommerce/abandoned-cart-recovery-agent

🚚 Logistics

NameSystem TypeComplexityCapabilitiesPath
AI Supply Chain Optimization SystemMulti-AgentL5Optimizationprojects/logistics/ai-supply-chain-optimization-system
Demand Forecasting AgentAgentL3Prediction, Analyticsprojects/logistics/demand-forecasting-agent
Delivery Route Optimization AgentAgentL3Optimization, Planningprojects/logistics/delivery-route-optimization-agent
Supplier Risk Monitoring SystemWorkflowL3Monitoring, Risk analysisprojects/logistics/supplier-risk-monitoring-system
Warehouse Layout Optimization AgentAgentL3Optimization, Simulationprojects/logistics/warehouse-layout-optimization-agent
Shipment Tracking Intelligence SystemWorkflowL2Monitoring, Detectionprojects/logistics/shipment-tracking-intelligence-system
Inventory Replenishment Automation AgentAgentL3Automation, Optimizationprojects/logistics/inventory-replenishment-automation-agent

🏠 Real Estate

NameSystem TypeComplexityCapabilitiesPath
Property Valuation Intelligence AgentAgentL3Prediction, Analyticsprojects/real-estate/property-valuation-intelligence-agent
Smart Property Matching SystemAgentL3Matching, Retrievalprojects/real-estate/smart-property-matching-system
Lease Agreement Analysis AgentAgentL2Extraction, Risk analysisprojects/real-estate/lease-agreement-analysis-agent
Maintenance Request Automation SystemWorkflowL2Automation, Routingprojects/real-estate/maintenance-request-automation-system
Real Estate Investment AnalyzerAgentL3Financial analysis, Predictionprojects/real-estate/real-estate-investment-analyzer

👥 HR

NameSystem TypeComplexityCapabilitiesPath
AI Hiring AssistantAgentL3Reasoning, Matchingprojects/hr/ai-hiring-assistant
AI Resume Parsing + Ranking SystemWorkflow → AgentL3Extraction, Rankingprojects/hr/ai-resume-parsing-ranking-system
Resume Screening & Ranking SystemWorkflowL2Matching, Rankingprojects/hr/resume-screening-ranking-system
Interview Question Generation AgentAgentL2Generationprojects/hr/interview-question-generation-agent
Candidate Sourcing AgentAgentL3Retrieval, Matchingprojects/hr/candidate-sourcing-agent
Employee Onboarding Automation SystemWorkflowL2Automation, Orchestrationprojects/hr/employee-onboarding-automation-system
Performance Review Intelligence AgentAgentL3Analysis, Planningprojects/hr/performance-review-intelligence-agent
Employee Sentiment Monitoring SystemWorkflowL2Monitoring, Predictionprojects/hr/employee-sentiment-monitoring-system

🧠 AI Core

NameSystem TypeComplexityCapabilitiesPath
Multi-Modal Intelligence AgentAgentL4Multimodal, Reasoningprojects/ai-core/multi-modal-intelligence-agent
Autonomous Research Multi-Agent SystemMulti-AgentL4Research, Retrievalprojects/ai-core/autonomous-research-multi-agent-system

🔌 AI Infra

NameSystem TypeComplexityCapabilitiesPath
MCP Tool Registry SystemMulti-AgentL5Tooling, Orchestrationprojects/ai-infra/mcp-tool-registry-system
AI Agent Orchestration EngineMulti-AgentL5Orchestration, Planningprojects/ai-infra/ai-agent-orchestration-engine
AI Agent Memory Management SystemWorkflow → AgentL5Memory, Retrievalprojects/ai-infra/ai-agent-memory-management-system
AI Prompt Optimization EngineAgentL4Optimization, Evaluationprojects/ai-infra/ai-prompt-optimization-engine
AI Evaluation Framework (LLM Testing System)WorkflowL5Evaluation, Benchmarkingprojects/ai-infra/ai-evaluation-framework
AI Output Quality Scoring EngineAgentL5Evaluation, Reasoningprojects/ai-infra/ai-output-quality-scoring-engine
AI Observability Platform (Tracing + Logs)WorkflowL5Monitoring, Loggingprojects/ai-infra/ai-observability-platform
AI Feedback Loop System (Human-in-the-loop)Workflow → AgentL5Learning, Feedbackprojects/ai-infra/ai-feedback-loop-system
AI Guardrails & Safety EngineWorkflow → AgentL5Validation, Safetyprojects/ai-infra/ai-guardrails-safety-engine
AI Hallucination Detection SystemAgentL5Detection, Reasoningprojects/ai-infra/ai-hallucination-detection-system
AI Retry & Fallback Strategy EngineWorkflowL5Reliability, Optimizationprojects/ai-infra/ai-retry-fallback-strategy-engine
AI Token Usage Optimization EngineWorkflow → AgentL5Optimization, Monitoringprojects/ai-infra/ai-token-usage-optimization-engine
AI Latency Optimization SystemWorkflowL5Performanceprojects/ai-infra/ai-latency-optimization-system
Cross-Agent Communication Protocol SystemMulti-AgentL5Communication, Orchestrationprojects/ai-infra/cross-agent-communication-protocol-system
AI Tool Permissioning SystemWorkflowL5Security, Controlprojects/ai-infra/ai-tool-permissioning-system
Multi-Source RAG Aggregation EngineAgentL5Retrieval, Aggregationprojects/ai-infra/multi-source-rag-aggregation-engine
Context Window Optimization SystemWorkflowL4Optimizationprojects/ai-infra/context-window-optimization-system
Real-Time AI Streaming Response EngineWorkflowL5Streaming, Performanceprojects/ai-infra/real-time-ai-streaming-response-engine
AI Event-Driven Workflow EngineWorkflowL5Automation, Event Processingprojects/ai-infra/ai-event-driven-workflow-engine
AI System Self-Improvement EngineMulti-AgentL5Learning, Optimizationprojects/ai-infra/ai-system-self-improvement-engine
Domain-Specific RAG Builder (Plug & Play)WorkflowL4Retrievalprojects/ai-infra/domain-specific-rag-builder
RAG Query Rewriting EngineAgentL4Optimizationprojects/ai-infra/rag-query-rewriting-engine
Hybrid Search Engine (Vector + Keyword)WorkflowL4Retrievalprojects/ai-infra/hybrid-search-engine
AI Knowledge Graph + RAG SystemAgentL5Reasoning, Retrievalprojects/ai-infra/ai-knowledge-graph-rag-system
AI Workflow Testing & Evaluation FrameworkWorkflowL3Testing, Observabilityprojects/ai-infra/ai-workflow-testing-evaluation-framework

Note: A separately named “MCP Tool Registry & Discovery System” is intentionally not a second catalog row—it overlaps the existing MCP Tool Registry System (registry + discovery + permissions). Extend that brief if you need more detail.

Note: The candidate “MCP Server Hub & Registry Platform” is treated as the same catalog surface area as MCP Tool Registry System—use that project and extend it rather than adding a duplicate row.


🏭 Industrial AI

NameSystem TypeComplexityCapabilitiesPath
Predictive Maintenance OrchestratorMulti-AgentL5Monitoring, Prediction, Planningprojects/industrial-ai/predictive-maintenance-orchestrator
Digital Twin Reasoning AgentAgentL4Simulation, Reasoning, Retrievalprojects/industrial-ai/digital-twin-reasoning-agent
Safety Protocol Compliance MonitorWorkflowL3Multimodal, Monitoringprojects/industrial-ai/safety-protocol-compliance-monitor

🌾 Agri AI

NameSystem TypeComplexityCapabilitiesPath
Precision Irrigation AgentAgentL3Optimization, Decision makingprojects/agri-ai/precision-irrigation-agent
Crop Disease Diagnostic AgentAgentL3Multimodal, Retrievalprojects/agri-ai/crop-disease-diagnostic-agent
Livestock Health & Behavior TrackerWorkflowL4Monitoring, Predictionprojects/agri-ai/livestock-health-behavior-tracker

⚡ Energy AI

NameSystem TypeComplexityCapabilitiesPath
Grid Load Balancing Multi-Agent SystemMulti-AgentL5Optimization, Real-time Processingprojects/energy-ai/grid-load-balancing-multi-agent-system
EV Charging Optimization AgentAgentL2Optimization, Automationprojects/energy-ai/ev-charging-optimization-agent
Smart Grid Leakage Detection SystemWorkflowL3Monitoring, Detectionprojects/energy-ai/smart-grid-leakage-detection-system

🧪 Research AI

NameSystem TypeComplexityCapabilitiesPath
Chemical Synthesis Planning AgentAgentL4Reasoning, Planningprojects/research-ai/chemical-synthesis-planning-agent
Patent Landscape AnalyzerAgentL3Retrieval, Researchprojects/research-ai/patent-landscape-analyzer
Lab Notebook Auto-Summarization PipelineWorkflowL2Extraction, Structuringprojects/research-ai/lab-notebook-auto-summarization-pipeline

🎬 Creator AI

NameSystem TypeComplexityCapabilitiesPath
Podcast to Social Snippet GeneratorWorkflowL3Multimodal, Extractionprojects/creator-ai/podcast-to-social-snippet-generator
Script to Storyboard Generation SystemWorkflowL4Multimodal, Planningprojects/creator-ai/script-to-storyboard-generation-system

🏛️ Gov AI

NameSystem TypeComplexityCapabilitiesPath
Public Benefit Eligibility AgentAgentL2Reasoning, Complianceprojects/gov-ai/public-benefit-eligibility-agent

🛡️ Security AI

NameSystem TypeComplexityCapabilitiesPath
Deepfake Detection ProxyWorkflowL4Analysis, Monitoringprojects/security-ai/deepfake-detection-proxy
PII Redaction GatewayWorkflowL2Extraction, Privacyprojects/security-ai/pii-redaction-gateway
Zero Trust Behavioral AuthenticatorAgentL4Monitoring, Decision makingprojects/security-ai/zero-trust-behavioral-authenticator
Automated Phishing Takedown AgentAgentL3Analysis, Automationprojects/security-ai/automated-phishing-takedown-agent
Continuous Insider Threat Detection AgentAgentL4Behavioral analysis, Monitoringprojects/security-ai/continuous-insider-threat-detection-agent

Note: AI Phishing Detection System (projects/security/ai-phishing-detection-system) focuses on classification at the mailbox/ingress edge; Automated Phishing Takedown Agent focuses on post-detection abuse response (evidence bundles, provider workflows).

Note: Zero Trust Behavioral Authenticator focuses on session/access trust signals; Continuous Insider Threat Detection Agent focuses on insider-risk case building (cross-system UEBA-style correlation to SIEM).


🧘 Health AI

NameSystem TypeComplexityCapabilitiesPath
AI Sleep Optimization AgentAgentL2Personalization, Monitoringprojects/health-ai/ai-sleep-optimization-agent
Smart Fridge Meal Planner AgentAgentL3Multimodal, Planningprojects/health-ai/smart-fridge-meal-planner-agent

🚢 Logistics AI

NameSystem TypeComplexityCapabilitiesPath
Container Loading Optimization AgentAgentL4Optimization, Planningprojects/logistics-ai/container-loading-optimization-agent
Port Congestion Prediction AgentAgentL3Prediction, Analysisprojects/logistics-ai/port-congestion-prediction-agent

🌍 Climate AI

NameSystem TypeComplexityCapabilitiesPath
Climate Risk Scenario Simulation AgentAgentL4Simulation, Predictionprojects/climate-ai/climate-risk-scenario-simulation-agent

🛰️ Geo AI

NameSystem TypeComplexityCapabilitiesPath
Satellite Change Detection WorkflowWorkflowL4Multimodal, Detectionprojects/geo-ai/satellite-change-detection-workflow

🌱 Sustainability

NameSystem TypeComplexityCapabilitiesPath
Climate & Sustainability Intelligence AgentAgentL3Analytics, Planningprojects/sustainability/climate-sustainability-intelligence-agent
Carbon Footprint Ledger AgentAgentL3Analysis, Complianceprojects/sustainability/carbon-footprint-ledger-agent

Note: “AI NPC Dialogue Orchestrator” is not a separate catalog row—it overlaps AI NPC Behavior Engine (projects/gaming/ai-npc-behavior-engine); extend that brief for memory-heavy dialogue orchestration. “Urban Traffic Flow Multi-Agent System” overlaps Multi-Agent Smart City Traffic System (projects/iot/multi-agent-smart-city-traffic-system).


🧭 Contribution Note

Before adding a new project:

  1. Check the tables below and confirm the path/name is not already taken.
  2. Avoid duplication—extend an existing README.md if the scope overlaps.
  3. Add new value—prefer a distinct problem, integration surface, or production lesson.

Naming: keep titles practical and specific.

Ideas: favor real-world constraints—integrations, evaluation, cost, safety—over generic assistants with no clear architecture.

When you add a project:

  • Create projects/<domain>/<project-slug>/README.md under the right domain folder in projects/, mirroring the headings and depth of sibling entries (for example projects/travel/ai-travel-planner/README.md).
  • Add architecture.md with the sections used elsewhere in this repo (overview, ASCII diagram, components, data flow, agent interaction, scaling, failure handling, observability).
  • Update this catalog section (summary counts + the correct domain table) in the same change.

Contributing

This project values real systems, clear architecture, and production thinking — not generic assistant ideas. See CONTRIBUTING.md for the full process; in short, scan the Project catalog for duplicates, mirror the structure of nearby projects under projects/, and ship README.md + architecture.md plus a new row in the catalog tables.


Who this is for

Senior and staff engineers, AI engineers, and anyone who wants to move from “I shipped a chatbot” to “I designed a production AI system.”


Vision

To be a practical, TypeScript-first reference for real-world AI system design — workflows, agents, and multi-agent systems — with honesty about tradeoffs and failure modes.

If this repo helps you, a star on GitHub helps others find it.

Frequently Asked Questions

What is Ultimate-TypeScript-Real-World-AI-Projects?

Ultimate-TypeScript-Real-World-AI-Projects is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by rajudandigam. 250+ real-world TypeScript AI projects: workflows, agents, and multi-agent systems with production-ready architecture, not chatbot demos. It has 137 GitHub stars.

Is Ultimate-TypeScript-Real-World-AI-Projects safe to use?

Yes. Ultimate-TypeScript-Real-World-AI-Projects 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.

How do I install Ultimate-TypeScript-Real-World-AI-Projects?

Clone the repository with "git clone https://github.com/rajudandigam/Ultimate-TypeScript-Real-World-AI-Projects" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is Ultimate-TypeScript-Real-World-AI-Projects written in?

Ultimate-TypeScript-Real-World-AI-Projects is primarily written in TypeScript. It is open-source under rajudandigam on GitHub, so you can review or fork the full source.

Are there alternatives to Ultimate-TypeScript-Real-World-AI-Projects?

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 Ultimate-TypeScript-Real-World-AI-Projects against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details