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