> For the complete documentation index, see [llms.txt](https://syv-labs.gitbook.io/context-pool/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://syv-labs.gitbook.io/context-pool/team-sync/overview.md).

# Overview

## Your team's knowledge should be shared knowledge.

When you debug a tricky issue and find the fix, that insight lives in your `ContextPool/`. Your teammate — working on the same codebase the next week — hits the same issue. Their agent has no idea you already solved it.

**Team Sync closes that gap.** Push your local insights to a shared cloud pool. Pull your teammates' insights locally. When your agent searches for a bug or decision, it searches the entire team's memory — not just yours.

***

## How It Works

```
Engineer A                     ContextPool Cloud              Engineer B
─────────────────              ──────────────────             ─────────────────
cxp push              →        team insight pool      →       cxp pull
(local insights)               (deduplicated,                 (team insights at
                                quota-enforced)                ~/.cache/contextpool/)
                                                               ↓
                                                     agent searches both local
                                                     + team insights automatically
```

Insights are deduplicated by content hash — pushing the same insight twice doesn't create duplicates. Secrets are redacted before anything leaves your machine.

***

## Privacy

* **Secrets are stripped before push.** API keys, tokens, JWTs, connection strings, and other secrets are redacted automatically before any insight is sent to the cloud.
* **You control what leaves your machine.** Only insights you explicitly `cxp push` are shared. Nothing is synced automatically.
* **Your raw chat transcripts never leave your machine.** Only the distilled, structured summaries are pushed — not the full conversation.

***

## Plans

|          | Free  | Paid                                     |
| -------- | ----- | ---------------------------------------- |
| Insights | 1,000 | Unlimited                                |
| Projects | 5     | Unlimited                                |
| Members  | 3     | Unlimited                                |
| Price    | Free  | [contextpool.io](https://contextpool.io) |

***

## Get Started

→ [Setup](/context-pool/team-sync/setup.md) — create your team and get your API key in 2 minutes.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://syv-labs.gitbook.io/context-pool/team-sync/overview.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
