codee-agent 0.1.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.
- codee_agent-0.1.0/LICENSE +21 -0
- codee_agent-0.1.0/PKG-INFO +66 -0
- codee_agent-0.1.0/README.md +35 -0
- codee_agent-0.1.0/pyproject.toml +66 -0
- codee_agent-0.1.0/src/codee/.gitignore +2 -0
- codee_agent-0.1.0/src/codee/__init__.py +0 -0
- codee_agent-0.1.0/src/codee/admin.py +1672 -0
- codee_agent-0.1.0/src/codee/admin_api.py +61 -0
- codee_agent-0.1.0/src/codee/admin_cli.py +86 -0
- codee_agent-0.1.0/src/codee/admin_service.py +1005 -0
- codee_agent-0.1.0/src/codee/executor.py +381 -0
- codee_agent-0.1.0/src/codee/init_cli.py +82 -0
- codee_agent-0.1.0/src/codee/lib/__init__.py +0 -0
- codee_agent-0.1.0/src/codee/lib/cron_describe.py +33 -0
- codee_agent-0.1.0/src/codee/lib/runs_db.py +195 -0
- codee_agent-0.1.0/src/codee/lib/test_runs_db.py +199 -0
- codee_agent-0.1.0/src/codee/lib/test_trigger_cron_skills.py +485 -0
- codee_agent-0.1.0/src/codee/lib/test_trigger_issue_skills.py +93 -0
- codee_agent-0.1.0/src/codee/lib/trigger_aws_sqs_skills.py +224 -0
- codee_agent-0.1.0/src/codee/lib/trigger_cron_skills.py +364 -0
- codee_agent-0.1.0/src/codee/lib/trigger_email_skills.py +225 -0
- codee_agent-0.1.0/src/codee/lib/trigger_issue_skills.py +107 -0
- codee_agent-0.1.0/src/codee/mail_server.py +45 -0
- codee_agent-0.1.0/src/codee/start_cli.py +98 -0
- codee_agent-0.1.0/src/codee/templates/AGENTS.md +42 -0
- codee_agent-0.1.0/src/codee/templates/CLAUDE.md +1 -0
- codee_agent-0.1.0/src/codee/templates/skills/aws-sqs-alarm-response/SKILL.md +23 -0
- codee_agent-0.1.0/src/codee/templates/skills/cron-research-5xx-errors/SKILL.md +17 -0
- codee_agent-0.1.0/src/codee/templates/skills/story-code-reviewer/SKILL.md +29 -0
- codee_agent-0.1.0/src/codee/templates/skills/story-developer/SKILL.md +26 -0
- codee_agent-0.1.0/src/codee/templates/skills/story-planner/SKILL.md +35 -0
- codee_agent-0.1.0/src/codee/templates/skills/story-planner/assets/readme-template.md +43 -0
- codee_agent-0.1.0/src/codee/templates/skills/story-qa/SKILL.md +28 -0
- codee_agent-0.1.0/src/codee/templates/skills/task-developer/SKILL.md +25 -0
- codee_agent-0.1.0/src/codee/templates/skills/task-qa/SKILL.md +26 -0
- codee_agent-0.1.0/src/codee/test_admin_api.py +64 -0
- codee_agent-0.1.0/src/codee/test_admin_cli.py +63 -0
- codee_agent-0.1.0/src/codee/test_admin_service.py +897 -0
- codee_agent-0.1.0/src/codee/test_executor.py +190 -0
- codee_agent-0.1.0/src/codee/test_init_cli.py +131 -0
- codee_agent-0.1.0/src/codee/test_memory_index.py +31 -0
- codee_agent-0.1.0/src/codee/test_start_cli.py +164 -0
- codee_agent-0.1.0/src/codee/workflow_graph.py +83 -0
- codee_agent-0.1.0/src/codee_admin/__init__.py +1 -0
- codee_agent-0.1.0/src/codee_admin/codee_admin.py +4 -0
- codee_agent-0.1.0/src/codee_agent_abstract/__init__.py +0 -0
- codee_agent-0.1.0/src/codee_agent_abstract/provider.py +56 -0
- codee_agent-0.1.0/src/codee_agent_claude_code/__init__.py +0 -0
- codee_agent-0.1.0/src/codee_agent_claude_code/provider.py +90 -0
- codee_agent-0.1.0/src/codee_agent_github_copilot/__init__.py +0 -0
- codee_agent-0.1.0/src/codee_agent_github_copilot/provider.py +253 -0
- codee_agent-0.1.0/src/codee_agent_github_copilot/test.py +176 -0
- codee_agent-0.1.0/src/codee_database/__init__.py +0 -0
- codee_agent-0.1.0/src/codee_database/database.py +13 -0
- codee_agent-0.1.0/src/codee_database/oauth_tokens.py +148 -0
- codee_agent-0.1.0/src/codee_main_context/__init__.py +0 -0
- codee_agent-0.1.0/src/codee_main_context/context.py +127 -0
- codee_agent-0.1.0/src/codee_main_context/logging.py +111 -0
- codee_agent-0.1.0/src/codee_main_context/test_logging.py +90 -0
- codee_agent-0.1.0/src/codee_tasks_abstract/__init__.py +0 -0
- codee_agent-0.1.0/src/codee_tasks_abstract/provider.py +58 -0
- codee_agent-0.1.0/src/codee_tasks_azure_devops/__init__.py +0 -0
- codee_agent-0.1.0/src/codee_tasks_azure_devops/oauth.py +346 -0
- codee_agent-0.1.0/src/codee_tasks_azure_devops/provider.py +207 -0
- codee_agent-0.1.0/src/codee_tasks_azure_devops/test.py +462 -0
- codee_agent-0.1.0/src/codee_tasks_jira/__init__.py +0 -0
- codee_agent-0.1.0/src/codee_tasks_jira/provider.py +162 -0
- codee_agent-0.1.0/src/codee_tasks_jira/test.py +75 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Codee contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: codee-agent
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A virtual co-worker that picks up Jira and Azure DevOps tasks and solves them with coding agents.
|
|
5
|
+
Keywords: ai,agent,jira,azure-devops,claude-code,github-copilot,automation
|
|
6
|
+
Author: Denis Kibalko
|
|
7
|
+
Author-email: Denis Kibalko <denis.kibalko@nimbusweb.me>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Classifier: Topic :: Software Development :: Bug Tracking
|
|
18
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
19
|
+
Requires-Dist: boto3>=1.35,<2
|
|
20
|
+
Requires-Dist: requests>=2.31,<3
|
|
21
|
+
Requires-Dist: aiosmtpd>=1.4,<2
|
|
22
|
+
Requires-Dist: pyyaml>=6.0.3,<7
|
|
23
|
+
Requires-Dist: cron-descriptor>=2.1.0,<3
|
|
24
|
+
Requires-Dist: python-dotenv>=1.2.2,<2
|
|
25
|
+
Requires-Dist: reflex>=0.9.7
|
|
26
|
+
Requires-Python: >=3.12
|
|
27
|
+
Project-URL: Homepage, https://github.com/fusebase-dev/codee
|
|
28
|
+
Project-URL: Repository, https://github.com/fusebase-dev/codee
|
|
29
|
+
Project-URL: Issues, https://github.com/fusebase-dev/codee/issues
|
|
30
|
+
Description-Content-Type: text/markdown
|
|
31
|
+
|
|
32
|
+
# Codee - a virtual co-worker
|
|
33
|
+
|
|
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.
|
|
35
|
+
|
|
36
|
+
Codee works with Jira and Azure DevOps as tasks provider, new providers are quite easy to create, PRs are welcome.
|
|
37
|
+
|
|
38
|
+
As agents it current works with Claude Code and Github Copilot.
|
|
39
|
+
|
|
40
|
+
## Run Codee
|
|
41
|
+
|
|
42
|
+
Codee is a python package, you first need to install it.
|
|
43
|
+
|
|
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.
|
|
47
|
+
|
|
48
|
+
Run Codee:
|
|
49
|
+
|
|
50
|
+
`uv run codee-start`
|
|
51
|
+
|
|
52
|
+
On the first run, the command initializes Codee instructions and skills.
|
|
53
|
+
|
|
54
|
+
## Debug mode
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
uv run codee-start --debug # Codee debug output
|
|
58
|
+
uv run codee-start --debug-all # ...plus reflex, boto3, urllib3 and friends
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### Skills
|
|
62
|
+
|
|
63
|
+
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,35 @@
|
|
|
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 solve tasks.
|
|
4
|
+
|
|
5
|
+
Codee works with Jira and Azure DevOps as tasks provider, new providers are quite easy to create, PRs are welcome.
|
|
6
|
+
|
|
7
|
+
As agents it current works with Claude Code and Github Copilot.
|
|
8
|
+
|
|
9
|
+
## Run Codee
|
|
10
|
+
|
|
11
|
+
Codee is a python package, you first need to install it.
|
|
12
|
+
|
|
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.
|
|
16
|
+
|
|
17
|
+
Run Codee:
|
|
18
|
+
|
|
19
|
+
`uv run codee-start`
|
|
20
|
+
|
|
21
|
+
On the first run, the command initializes Codee instructions and skills.
|
|
22
|
+
|
|
23
|
+
## Debug mode
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
uv run codee-start --debug # Codee debug output
|
|
27
|
+
uv run codee-start --debug-all # ...plus reflex, boto3, urllib3 and friends
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Skills
|
|
31
|
+
|
|
32
|
+
Codee uses skills to perform tasks. It is the same skills which are used in Claude Code, Codex and other agents.
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
TODO: add skill types, x-codee skills extension
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "codee-agent"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "A virtual co-worker that picks up Jira and Azure DevOps tasks and solves them with coding agents."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
license-files = ["LICENSE"]
|
|
8
|
+
requires-python = ">=3.12"
|
|
9
|
+
authors = [
|
|
10
|
+
{ name = "Denis Kibalko", email = "denis.kibalko@nimbusweb.me" },
|
|
11
|
+
]
|
|
12
|
+
keywords = ["ai", "agent", "jira", "azure-devops", "claude-code", "github-copilot", "automation"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 3 - Alpha",
|
|
15
|
+
"Environment :: Console",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Programming Language :: Python :: 3.13",
|
|
21
|
+
"Topic :: Software Development :: Bug Tracking",
|
|
22
|
+
"Topic :: Software Development :: Quality Assurance",
|
|
23
|
+
]
|
|
24
|
+
dependencies = [
|
|
25
|
+
"boto3 >= 1.35,<2",
|
|
26
|
+
"requests >= 2.31,<3",
|
|
27
|
+
"aiosmtpd >= 1.4,<2",
|
|
28
|
+
"pyyaml >= 6.0.3,<7",
|
|
29
|
+
"cron-descriptor >= 2.1.0,<3",
|
|
30
|
+
"python-dotenv >= 1.2.2,<2",
|
|
31
|
+
"reflex >= 0.9.7",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[dependency-groups]
|
|
35
|
+
dev = [
|
|
36
|
+
"pytest >= 8,<10",
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
[project.urls]
|
|
40
|
+
Homepage = "https://github.com/fusebase-dev/codee"
|
|
41
|
+
Repository = "https://github.com/fusebase-dev/codee"
|
|
42
|
+
Issues = "https://github.com/fusebase-dev/codee/issues"
|
|
43
|
+
|
|
44
|
+
[project.scripts]
|
|
45
|
+
codee-start = "codee.start_cli:main"
|
|
46
|
+
codee-init = "codee.init_cli:main"
|
|
47
|
+
codee-admin = "codee.admin_cli:main"
|
|
48
|
+
codee-executor = "codee.executor:main"
|
|
49
|
+
|
|
50
|
+
[tool.uv.build-backend]
|
|
51
|
+
module-name = [
|
|
52
|
+
"codee",
|
|
53
|
+
"codee_admin",
|
|
54
|
+
"codee_main_context",
|
|
55
|
+
"codee_database",
|
|
56
|
+
"codee_agent_abstract",
|
|
57
|
+
"codee_agent_claude_code",
|
|
58
|
+
"codee_agent_github_copilot",
|
|
59
|
+
"codee_tasks_abstract",
|
|
60
|
+
"codee_tasks_jira",
|
|
61
|
+
"codee_tasks_azure_devops",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[build-system]
|
|
65
|
+
requires = ["uv_build >= 0.11.29,<0.12"]
|
|
66
|
+
build-backend = "uv_build"
|
|
File without changes
|