codee-agent 0.4.2__tar.gz → 0.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {codee_agent-0.4.2 → codee_agent-0.5.1}/PKG-INFO +21 -14
- codee_agent-0.5.1/README.md +38 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/pyproject.toml +15 -1
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/admin.py +461 -56
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/admin_service.py +149 -31
- codee_agent-0.5.1/src/codee/agent_cli.py +71 -0
- codee_agent-0.5.1/src/codee/coding_agents.py +38 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/executor.py +23 -10
- codee_agent-0.5.1/src/codee/init_cli.py +170 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/cron_describe.py +7 -2
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/runs_db.py +1 -1
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/test_runs_db.py +2 -1
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/test_trigger_issue_skills.py +42 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/trigger_issue_skills.py +26 -5
- codee_agent-0.5.1/src/codee/setup_wizard.py +480 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/story-code-reviewer/SKILL.md +12 -5
- codee_agent-0.5.1/src/codee/templates/skills/story-developer/SKILL.md +34 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/story-planner/SKILL.md +12 -4
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/story-qa/SKILL.md +11 -4
- codee_agent-0.5.1/src/codee/templates/skills/story-security-reviewer/SKILL.md +38 -0
- codee_agent-0.5.1/src/codee/templates/skills/task-code-reviewer/SKILL.md +33 -0
- codee_agent-0.5.1/src/codee/templates/skills/task-developer/SKILL.md +33 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/task-qa/SKILL.md +10 -4
- codee_agent-0.5.1/src/codee/templates/skills/task-security-reviewer/SKILL.md +35 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_admin_service.py +258 -10
- codee_agent-0.5.1/src/codee/test_agent_cli.py +99 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_executor.py +25 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_init_cli.py +48 -5
- codee_agent-0.5.1/src/codee/test_setup_wizard.py +237 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_start_cli.py +1 -1
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_abstract/provider.py +31 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_claude_code/provider.py +15 -3
- codee_agent-0.5.1/src/codee_agent_claude_code/test.py +39 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_github_copilot/provider.py +11 -1
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_github_copilot/test.py +5 -0
- codee_agent-0.5.1/src/codee_main_context/context.py +248 -0
- codee_agent-0.5.1/src/codee_main_context/test_context.py +125 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_abstract/provider.py +30 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_azure_devops/provider.py +186 -35
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_azure_devops/test.py +180 -19
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_jira/provider.py +149 -18
- codee_agent-0.5.1/src/codee_tasks_jira/test.py +423 -0
- codee_agent-0.4.2/README.md +0 -35
- codee_agent-0.4.2/src/codee/init_cli.py +0 -84
- codee_agent-0.4.2/src/codee/templates/skills/story-developer/SKILL.md +0 -26
- codee_agent-0.4.2/src/codee/templates/skills/task-developer/SKILL.md +0 -25
- codee_agent-0.4.2/src/codee_main_context/context.py +0 -128
- codee_agent-0.4.2/src/codee_tasks_jira/test.py +0 -213
- {codee_agent-0.4.2 → codee_agent-0.5.1}/LICENSE +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/.gitignore +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/__init__.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/admin_api.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/admin_cli.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/__init__.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/mcp_config.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/test_mcp_config.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/test_trigger_cron_skills.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/trigger_aws_sqs_skills.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/trigger_cron_skills.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/trigger_email_skills.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/mail_server.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/start_cli.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/tasks_providers.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/AGENTS.md +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/CLAUDE.md +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/aws-sqs-alarm-response/SKILL.md +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/cron-research-5xx-errors/SKILL.md +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/story-planner/assets/readme-template.md +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_admin_api.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_admin_cli.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_memory_index.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/workflow_graph.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_admin/__init__.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_admin/codee_admin.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_abstract/__init__.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_claude_code/__init__.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_github_copilot/__init__.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_database/__init__.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_database/database.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_database/oauth_tokens.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_main_context/__init__.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_main_context/logging.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_main_context/test_logging.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_abstract/__init__.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_azure_devops/__init__.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_azure_devops/oauth.py +0 -0
- {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_jira/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codee-agent
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
Summary: A virtual co-worker that picks up Jira and Azure DevOps tasks and solves them with coding agents.
|
|
5
5
|
Keywords: ai,agent,jira,azure-devops,claude-code,github-copilot,automation
|
|
6
6
|
Author: Denis Kibalko
|
|
@@ -23,6 +23,10 @@ Requires-Dist: pyyaml>=6.0.3,<7
|
|
|
23
23
|
Requires-Dist: cron-descriptor>=2.1.0,<3
|
|
24
24
|
Requires-Dist: python-dotenv>=1.2.2,<2
|
|
25
25
|
Requires-Dist: reflex>=0.9.7
|
|
26
|
+
Requires-Dist: pydantic>=2.12,<3
|
|
27
|
+
Requires-Dist: starlette>=1.3,<2
|
|
28
|
+
Requires-Dist: anyio>=4,<5
|
|
29
|
+
Requires-Dist: reflex-base
|
|
26
30
|
Requires-Python: >=3.12
|
|
27
31
|
Project-URL: Homepage, https://github.com/fusebase-dev/codee
|
|
28
32
|
Project-URL: Repository, https://github.com/fusebase-dev/codee
|
|
@@ -31,25 +35,31 @@ Description-Content-Type: text/markdown
|
|
|
31
35
|
|
|
32
36
|
# Codee - a virtual co-worker
|
|
33
37
|
|
|
34
|
-
The goal of this project is to provide an assistant that will integrate into your existing environment in order to help you to
|
|
38
|
+
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).
|
|
35
39
|
|
|
36
|
-
Codee works with Jira and Azure DevOps as tasks
|
|
40
|
+
Codee works with Jira and Azure DevOps as tasks providers, new providers are quite easy to create, PRs are welcome.
|
|
37
41
|
|
|
38
|
-
As agents it
|
|
42
|
+
As agents it currently works with Claude Code and Github Copilot.
|
|
39
43
|
|
|
40
44
|
## Run Codee
|
|
41
45
|
|
|
42
|
-
Codee
|
|
46
|
+
Codee lives in its own directory, where it keeps skills, memory, temp files and config.
|
|
47
|
+
Create one and initialize it:
|
|
43
48
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
49
|
+
```bash
|
|
50
|
+
mkdir my-codee && cd my-codee
|
|
51
|
+
uvx codee-agent init
|
|
52
|
+
```
|
|
47
53
|
|
|
48
|
-
|
|
54
|
+
`init` scaffolds the project, detects the coding agents installed on the machine and asks
|
|
55
|
+
which one to use, then walks you through connecting Jira (entirely in the terminal) or
|
|
56
|
+
Azure DevOps (which finishes in the browser, since it needs an Entra ID consent flow).
|
|
49
57
|
|
|
50
|
-
|
|
58
|
+
Afterwards, run Codee with:
|
|
51
59
|
|
|
52
|
-
|
|
60
|
+
```bash
|
|
61
|
+
uv run codee-start
|
|
62
|
+
```
|
|
53
63
|
|
|
54
64
|
## Debug mode
|
|
55
65
|
|
|
@@ -61,6 +71,3 @@ uv run codee-start --debug-all # ...plus reflex, boto3, urllib3 and friends
|
|
|
61
71
|
### Skills
|
|
62
72
|
|
|
63
73
|
Codee uses skills to perform tasks. It is the same skills which are used in Claude Code, Codex and other agents.
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
TODO: add skill types, x-codee skills extension
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Codee - a virtual co-worker
|
|
2
|
+
|
|
3
|
+
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).
|
|
4
|
+
|
|
5
|
+
Codee works with Jira and Azure DevOps as tasks providers, new providers are quite easy to create, PRs are welcome.
|
|
6
|
+
|
|
7
|
+
As agents it currently works with Claude Code and Github Copilot.
|
|
8
|
+
|
|
9
|
+
## Run Codee
|
|
10
|
+
|
|
11
|
+
Codee lives in its own directory, where it keeps skills, memory, temp files and config.
|
|
12
|
+
Create one and initialize it:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
mkdir my-codee && cd my-codee
|
|
16
|
+
uvx codee-agent init
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
`init` scaffolds the project, detects the coding agents installed on the machine and asks
|
|
20
|
+
which one to use, then walks you through connecting Jira (entirely in the terminal) or
|
|
21
|
+
Azure DevOps (which finishes in the browser, since it needs an Entra ID consent flow).
|
|
22
|
+
|
|
23
|
+
Afterwards, run Codee with:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
uv run codee-start
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Debug mode
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
uv run codee-start --debug # Codee debug output
|
|
33
|
+
uv run codee-start --debug-all # ...plus reflex, boto3, urllib3 and friends
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Skills
|
|
37
|
+
|
|
38
|
+
Codee uses skills to perform tasks. It is the same skills which are used in Claude Code, Codex and other agents.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codee-agent"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.5.1"
|
|
4
4
|
description = "A virtual co-worker that picks up Jira and Azure DevOps tasks and solves them with coding agents."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -29,6 +29,17 @@ dependencies = [
|
|
|
29
29
|
"cron-descriptor >= 2.1.0,<3",
|
|
30
30
|
"python-dotenv >= 1.2.2,<2",
|
|
31
31
|
"reflex >= 0.9.7",
|
|
32
|
+
# Imported directly by the admin UI and the API, and declared here for
|
|
33
|
+
# that reason alone. They used to arrive through reflex, which is exactly
|
|
34
|
+
# the problem: reflex-base 0.9.10 moved pydantic behind an optional
|
|
35
|
+
# `pydantic` extra, so every fresh install of Codee resolving that version
|
|
36
|
+
# crashed on `from pydantic import BaseModel`. What the code imports, the
|
|
37
|
+
# package depends on.
|
|
38
|
+
"pydantic >= 2.12,<3", # codee.admin
|
|
39
|
+
"starlette >= 1.3,<2", # codee.admin_api
|
|
40
|
+
"anyio >= 4,<5", # codee_database.database
|
|
41
|
+
# Pinned exactly by reflex itself, so it carries no range of its own here.
|
|
42
|
+
"reflex-base", # codee.workflow_graph
|
|
32
43
|
]
|
|
33
44
|
|
|
34
45
|
[dependency-groups]
|
|
@@ -42,6 +53,9 @@ Repository = "https://github.com/fusebase-dev/codee"
|
|
|
42
53
|
Issues = "https://github.com/fusebase-dev/codee/issues"
|
|
43
54
|
|
|
44
55
|
[project.scripts]
|
|
56
|
+
# Shares the distribution name so `uvx codee-agent init` finds it with nothing
|
|
57
|
+
# installed; the other scripts are for a project that already has Codee.
|
|
58
|
+
codee-agent = "codee.agent_cli:main"
|
|
45
59
|
codee-start = "codee.start_cli:main"
|
|
46
60
|
codee-init = "codee.init_cli:main"
|
|
47
61
|
codee-admin = "codee.admin_cli:main"
|