Metadata-Version: 2.4
Name: codee-agent
Version: 0.5.4
Summary: A virtual co-worker that picks up Jira and Azure DevOps tasks and solves them with coding agents.
Keywords: ai,agent,jira,azure-devops,claude-code,github-copilot,automation
Author: Denis Kibalko
Author-email: Denis Kibalko <denis.kibalko@nimbusweb.me>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Bug Tracking
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Dist: boto3>=1.35,<2
Requires-Dist: requests>=2.31,<3
Requires-Dist: aiosmtpd>=1.4,<2
Requires-Dist: pyyaml>=6.0.3,<7
Requires-Dist: cron-descriptor>=2.1.0,<3
Requires-Dist: python-dotenv>=1.2.2,<2
Requires-Dist: reflex>=0.9.7
Requires-Dist: pydantic>=2.12,<3
Requires-Dist: starlette>=1.3,<2
Requires-Dist: anyio>=4,<5
Requires-Dist: reflex-base
Requires-Python: >=3.12
Project-URL: Homepage, https://github.com/fusebase-dev/codee
Project-URL: Repository, https://github.com/fusebase-dev/codee
Project-URL: Issues, https://github.com/fusebase-dev/codee/issues
Description-Content-Type: text/markdown

# Codee - a virtual co-worker

The goal of this project is to provide an assistant that will integrate into your existing environment in order to help you to work on tasks (development, code review, testing).

Codee works with Jira and Azure DevOps as tasks providers, new providers are quite easy to create, PRs are welcome.

As agents it currently works with Claude Code and Github Copilot.

## Run Codee

Codee lives in its own directory, where it keeps skills, memory, temp files and config.
Create one and initialize it:

```bash
mkdir my-codee && cd my-codee
uvx codee-agent init
```

`init` scaffolds the project, detects the coding agents installed on the machine and asks
which one to use, then walks you through connecting Jira (entirely in the terminal) or
Azure DevOps (which finishes in the browser, since it needs an Entra ID consent flow).

Afterwards, run Codee with:

```bash
uv run codee-start
```

## Debug mode

```bash
uv run codee-start --debug       # Codee debug output
uv run codee-start --debug-all   # ...plus reflex, boto3, urllib3 and friends
```

### Skills

Codee uses skills to perform tasks. It is the same skills which are used in Claude Code, Codex and other agents.
