Metadata-Version: 2.4
Name: teken
Version: 0.13.1
Summary: Deprecated alias for agentfront — installs agentfront (the renamed Agent First Interface CLI).
Project-URL: Homepage, https://github.com/agentculture/agentfront
Project-URL: Issues, https://github.com/agentculture/agentfront/issues
Author: AgentCulture
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.12
Requires-Dist: agentfront==0.13.1
Provides-Extra: mcp
Requires-Dist: agentfront[mcp]==0.13.1; extra == 'mcp'
Description-Content-Type: text/markdown

# teken — deprecated alias for `agentfront`

`teken` was renamed to **[`agentfront`](https://pypi.org/project/agentfront/)**.
This package is a thin compatibility wrapper: installing it pulls in
`agentfront`, which provides the canonical `agentfront` command and a deprecated
`teken` alias.

```bash
uv tool install teken       # still works — installs agentfront under the hood
uv tool install agentfront  # preferred going forward
```

## MCP surface

As of `agentfront` 0.11.0 the official [`mcp`](https://pypi.org/project/mcp/)
SDK is an **optional extra** — `agentfront`'s CLI and HTTP surfaces are pure
standard library, and only the MCP server surface pulls a wire SDK. The wrapper
mirrors that extra at parity, so either install gives you the MCP server:

```bash
uv tool install "agentfront[mcp]"   # canonical
uv tool install "teken[mcp]"        # wrapper parity — pulls agentfront[mcp]
```

`teken[mcp]` simply depends on `agentfront[mcp]==<same version>`, kept in
lockstep with the canonical project (see
[issue #31](https://github.com/agentculture/agentfront/issues/31)).

New code should depend on `agentfront` directly. This wrapper is published in
lockstep with `agentfront` and will be retired once the migration window closes.
