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.
Files changed (87) hide show
  1. {codee_agent-0.4.2 → codee_agent-0.5.1}/PKG-INFO +21 -14
  2. codee_agent-0.5.1/README.md +38 -0
  3. {codee_agent-0.4.2 → codee_agent-0.5.1}/pyproject.toml +15 -1
  4. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/admin.py +461 -56
  5. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/admin_service.py +149 -31
  6. codee_agent-0.5.1/src/codee/agent_cli.py +71 -0
  7. codee_agent-0.5.1/src/codee/coding_agents.py +38 -0
  8. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/executor.py +23 -10
  9. codee_agent-0.5.1/src/codee/init_cli.py +170 -0
  10. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/cron_describe.py +7 -2
  11. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/runs_db.py +1 -1
  12. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/test_runs_db.py +2 -1
  13. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/test_trigger_issue_skills.py +42 -0
  14. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/trigger_issue_skills.py +26 -5
  15. codee_agent-0.5.1/src/codee/setup_wizard.py +480 -0
  16. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/story-code-reviewer/SKILL.md +12 -5
  17. codee_agent-0.5.1/src/codee/templates/skills/story-developer/SKILL.md +34 -0
  18. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/story-planner/SKILL.md +12 -4
  19. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/story-qa/SKILL.md +11 -4
  20. codee_agent-0.5.1/src/codee/templates/skills/story-security-reviewer/SKILL.md +38 -0
  21. codee_agent-0.5.1/src/codee/templates/skills/task-code-reviewer/SKILL.md +33 -0
  22. codee_agent-0.5.1/src/codee/templates/skills/task-developer/SKILL.md +33 -0
  23. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/task-qa/SKILL.md +10 -4
  24. codee_agent-0.5.1/src/codee/templates/skills/task-security-reviewer/SKILL.md +35 -0
  25. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_admin_service.py +258 -10
  26. codee_agent-0.5.1/src/codee/test_agent_cli.py +99 -0
  27. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_executor.py +25 -0
  28. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_init_cli.py +48 -5
  29. codee_agent-0.5.1/src/codee/test_setup_wizard.py +237 -0
  30. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_start_cli.py +1 -1
  31. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_abstract/provider.py +31 -0
  32. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_claude_code/provider.py +15 -3
  33. codee_agent-0.5.1/src/codee_agent_claude_code/test.py +39 -0
  34. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_github_copilot/provider.py +11 -1
  35. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_github_copilot/test.py +5 -0
  36. codee_agent-0.5.1/src/codee_main_context/context.py +248 -0
  37. codee_agent-0.5.1/src/codee_main_context/test_context.py +125 -0
  38. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_abstract/provider.py +30 -0
  39. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_azure_devops/provider.py +186 -35
  40. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_azure_devops/test.py +180 -19
  41. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_jira/provider.py +149 -18
  42. codee_agent-0.5.1/src/codee_tasks_jira/test.py +423 -0
  43. codee_agent-0.4.2/README.md +0 -35
  44. codee_agent-0.4.2/src/codee/init_cli.py +0 -84
  45. codee_agent-0.4.2/src/codee/templates/skills/story-developer/SKILL.md +0 -26
  46. codee_agent-0.4.2/src/codee/templates/skills/task-developer/SKILL.md +0 -25
  47. codee_agent-0.4.2/src/codee_main_context/context.py +0 -128
  48. codee_agent-0.4.2/src/codee_tasks_jira/test.py +0 -213
  49. {codee_agent-0.4.2 → codee_agent-0.5.1}/LICENSE +0 -0
  50. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/.gitignore +0 -0
  51. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/__init__.py +0 -0
  52. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/admin_api.py +0 -0
  53. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/admin_cli.py +0 -0
  54. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/__init__.py +0 -0
  55. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/mcp_config.py +0 -0
  56. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/test_mcp_config.py +0 -0
  57. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/test_trigger_cron_skills.py +0 -0
  58. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/trigger_aws_sqs_skills.py +0 -0
  59. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/trigger_cron_skills.py +0 -0
  60. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/lib/trigger_email_skills.py +0 -0
  61. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/mail_server.py +0 -0
  62. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/start_cli.py +0 -0
  63. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/tasks_providers.py +0 -0
  64. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/AGENTS.md +0 -0
  65. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/CLAUDE.md +0 -0
  66. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/aws-sqs-alarm-response/SKILL.md +0 -0
  67. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/cron-research-5xx-errors/SKILL.md +0 -0
  68. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/templates/skills/story-planner/assets/readme-template.md +0 -0
  69. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_admin_api.py +0 -0
  70. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_admin_cli.py +0 -0
  71. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/test_memory_index.py +0 -0
  72. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee/workflow_graph.py +0 -0
  73. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_admin/__init__.py +0 -0
  74. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_admin/codee_admin.py +0 -0
  75. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_abstract/__init__.py +0 -0
  76. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_claude_code/__init__.py +0 -0
  77. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_agent_github_copilot/__init__.py +0 -0
  78. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_database/__init__.py +0 -0
  79. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_database/database.py +0 -0
  80. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_database/oauth_tokens.py +0 -0
  81. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_main_context/__init__.py +0 -0
  82. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_main_context/logging.py +0 -0
  83. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_main_context/test_logging.py +0 -0
  84. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_abstract/__init__.py +0 -0
  85. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_azure_devops/__init__.py +0 -0
  86. {codee_agent-0.4.2 → codee_agent-0.5.1}/src/codee_tasks_azure_devops/oauth.py +0 -0
  87. {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.4.2
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 solve tasks.
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 provider, new providers are quite easy to create, PRs are welcome.
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 current works with Claude Code and Github Copilot.
42
+ As agents it currently works with Claude Code and Github Copilot.
39
43
 
40
44
  ## Run Codee
41
45
 
42
- Codee is a python package, you first need to install it.
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
- TODO: provide install instructions
45
-
46
- You need to create a separate repo for Codee where it will store skills, memory, temp files, config, etc.
49
+ ```bash
50
+ mkdir my-codee && cd my-codee
51
+ uvx codee-agent init
52
+ ```
47
53
 
48
- Run Codee:
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
- `uv run codee-start`
58
+ Afterwards, run Codee with:
51
59
 
52
- On the first run, the command initializes Codee instructions and skills.
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.4.2"
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"