JSPM

  • Created
  • Published
  • Downloads 8
  • Score
    100M100P100Q73357F

Package Exports

  • @jatbas/aic
  • @jatbas/aic/dist/server.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@jatbas/aic) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@jatbas/aic

Agent Input Compiler — a local-first MCP server that compiles intent-specific project context for AI coding agents.

AIC sits between your editor and the AI model. On every message, it scans your codebase, selects only the files relevant to the current intent, and compresses them into a token-efficient prompt — so the model sees the right context without blowing the budget.

Install

Cursor (one click)

Install in Cursor

Or add manually to your global MCP config (~/.cursor/mcp.json):

{
  "mcpServers": {
    "aic": {
      "command": "npx",
      "args": ["-y", "@jatbas/aic"]
    }
  }
}

Claude Code

claude mcp add aic -- npx -y @jatbas/aic

What it does

  • Classifies intent from the user's message
  • Discovers and scores files by relevance
  • Compresses content (strip comments, minify types, summarize)
  • Assembles a token-budgeted prompt with structural context
  • Caches results for fast recompilation

License

Apache-2.0