Metadata-Version: 2.4
Name: cogmeta-talon
Version: 0.7.48
Summary: Context intelligence for Agentic Development — MCP server + setup CLI
Project-URL: Homepage, https://cogmeta.ai
Project-URL: Documentation, https://cogmeta.ai/docs
Author-email: CogMeta <hello@cogmeta.ai>
License: Proprietary
Keywords: ai,claude,code-context,graph,llm,mcp,talon
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.0
Requires-Dist: mcp-proxy>=0.1.0
Requires-Dist: mcp>=1.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: tree-sitter-python>=0.23.0
Requires-Dist: tree-sitter-typescript>=0.23.0
Requires-Dist: tree-sitter>=0.23.0
Description-Content-Type: text/markdown

# Talon

Context intelligence for Agentic Development — graph-based code context for AI coding agents.

## Supported Languages

| Language   | Extensions                     | Parser Features                                                      |
| ---------- | ------------------------------ | -------------------------------------------------------------------- |
| Python     | `.py`                          | Classes, decorators, raise/except, async                             |
| TypeScript | `.ts`, `.tsx`                  | Classes, interfaces, arrow functions, ES imports                     |
| JavaScript | `.js`, `.jsx`, `.mjs`, `.cjs`  | Arrow functions, ES imports/exports, method chains, error paths      |
| Go         | `.go`                          | Structs, receiver methods, interfaces, panic/recover                 |
| Java       | `.java`                        | Annotations, constructors, throws, inheritance, enums                |
| Rust       | `.rs`                          | Structs, traits, impl blocks, enums, panic!/? error paths            |
| C#         | `.cs`                          | Classes, interfaces, attributes, constructors, throw/catch           |
| Kotlin     | `.kt`, `.kts`                  | Data/sealed classes, companion objects, suspend functions             |
| Ruby       | `.rb`                          | Classes, modules, include/extend, singleton methods, rescue          |
| PHP        | `.php`                         | Classes, interfaces, traits, enums, namespace imports                |

All languages get full-depth parsing: classes/structs, functions/methods, imports, call edges, error flow edges, method chain resolution, and cross-module call edges.

## Install

```bash
pip install talon
```

## Quick start

```bash
# Authenticate with cogmeta.ai (opens browser, no copy/paste)
talon-setup auth login

# Generate .mcp.json for your project
talon-setup init --cloud
```

Then restart Claude Code — Talon is active.
