> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cogniscape.app/llms.txt
> Use this file to discover all available pages before exploring further.

# What is Cogniscape?

> A knowledge graph of your entire development workflow — automatically built from Claude Code, Cursor, GitHub, GitLab, Linear, Jira, and Monday.com.

Cogniscape captures everything that happens across your development workflow and stores it in a searchable knowledge graph. No manual notes. No context switching. Just ask your AI assistant what happened, why something changed, or what's in progress — and get a grounded answer.

## Ingestion points

Cogniscape automatically captures activity from the places where development actually happens:

<CardGroup cols={2}>
  <Card title="Claude Code" icon="terminal">
    Sessions, plans, tasks, token usage, and session summaries — captured via hooks on the developer's machine.
  </Card>

  <Card title="Cursor" icon="code">
    Sessions and conversation summaries — captured via Cursor hooks, automatically detected during installation.
  </Card>

  <Card title="GitHub" icon="github">
    Pushes, pull requests, and code reviews — captured via repository webhooks.
  </Card>

  <Card title="GitLab" icon="gitlab">
    Pushes, merge requests, pipelines, and deployments — captured via project or group webhooks.
  </Card>

  <Card title="Linear" icon="chart-bar">
    Issues, comments, projects, and project updates — captured via workspace webhooks.
  </Card>

  <Card title="Jira" icon="ticket">
    Issues, comments, worklogs, sprints, projects, and versions — captured via site webhooks.
  </Card>

  <Card title="Monday.com" icon="table-columns">
    Board items, updates, and column changes — captured via board webhooks.
  </Card>
</CardGroup>

All streams feed into the same knowledge graph, so you can ask questions that span AI activity, code changes, and project management in a single query.

## How it works

```text theme={null}
LOCAL (developer machine)

Claude Code hooks         Cursor hooks
  ├── SessionStart          ├── sessionStart
  ├── ExitPlanMode          ├── stop
  ├── TaskCreate            └── sessionEnd
  ├── TaskUpdate
  └── Stop
  │                         │
  ▼                         ▼
cogniscape CLI (local enrichment: git identity, transcript, session summary)
  │
  │
REMOTE (platform webhooks)
  │
  ├── GitHub      push, pull_request, pull_request_review
  ├── GitLab      push, merge_request, pipeline, deployment
  ├── Linear      Issue, Comment, Project, ProjectUpdate
  ├── Jira        Issue, Comment, Worklog, Issue link, Sprint, Project, Version
  └── Monday.com  Item created, Column value changed, Update created, Subitem created
  │
  ▼
Cogniscape API → Redis Queue
  │
  ▼
Event Worker → Knowledge Graph (Neo4j)
  │
  ▼
Cogniscape MCP → AI assistants
```

## Query from any MCP-enabled tool

Once events are in the graph, you retrieve context through the Cogniscape MCP — available in any tool that supports the Model Context Protocol, including Claude Code, Claude Desktop, OpenAI Codex, and others.

Ask things like:

* *"What did the team deliver this week? Summarize completed issues, merged PRs, and any blockers."*
* *"What is our average cycle time from opening an issue to merging the PR? Which items are taking the longest, and why?"*
* *"Is the team on track to finish the current sprint? Which issues haven't had any activity in the last 3 days?"*
* *"How much of our engineering effort is going to new features versus bug fixes versus infrastructure? Has that changed compared to last month?"*
* *"How much of our codebase is being built with AI assistance? What is the concrete return on that investment?"*
* *"How efficient is our code review process? How many PRs required rework, and what are the most common reasons?"*

## Get started

<CardGroup cols={2}>
  <Card title="Quick Setup" icon="rocket" href="/quickstart">
    Install the CLI and start capturing Claude Code and Cursor activity automatically.
  </Card>

  <Card title="CLI Reference" icon="book" href="/cli/commands">
    Full reference for all cogniscape commands and flags.
  </Card>

  <Card title="GitHub Integration" icon="github" href="/integrations/github">
    Set up a webhook to capture pushes, PRs, and code reviews.
  </Card>

  <Card title="GitLab Integration" icon="gitlab" href="/integrations/gitlab">
    Set up a webhook to capture pushes, merge requests, pipelines, and deployments.
  </Card>

  <Card title="Linear Integration" icon="chart-bar" href="/integrations/linear">
    Set up a webhook to capture issues, comments, and project updates.
  </Card>

  <Card title="Jira Integration" icon="ticket" href="/integrations/jira">
    Set up a webhook to capture issues, comments, sprints, and versions.
  </Card>

  <Card title="Monday.com Integration" icon="table-columns" href="/integrations/monday">
    Set up a webhook to capture board items, updates, and column changes.
  </Card>

  <Card title="Cogniscape MCP" icon="plug" href="/mcp-reader/overview">
    Query the knowledge graph from Claude Code, Claude Desktop, or any MCP client.
  </Card>
</CardGroup>
