ata-coder 2.4.2__py3-none-any.whl
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.
- ata_coder/__init__.py +1 -0
- ata_coder/agent.py +874 -0
- ata_coder/agent_compact.py +190 -0
- ata_coder/agent_controller.py +218 -0
- ata_coder/agent_extension.py +69 -0
- ata_coder/agent_routing.py +105 -0
- ata_coder/agent_subsystems.py +72 -0
- ata_coder/agent_tools.py +318 -0
- ata_coder/agent_undo.py +63 -0
- ata_coder/anthropic_client.py +465 -0
- ata_coder/change_tracker.py +368 -0
- ata_coder/clawd_integration.py +574 -0
- ata_coder/commands/__init__.py +128 -0
- ata_coder/commands/_core.py +184 -0
- ata_coder/commands/_safety.py +95 -0
- ata_coder/commands/_settings.py +241 -0
- ata_coder/commands/_workflow.py +451 -0
- ata_coder/commands.py +974 -0
- ata_coder/config.py +257 -0
- ata_coder/core/__init__.py +35 -0
- ata_coder/core/events.py +73 -0
- ata_coder/core/queue.py +85 -0
- ata_coder/core/state.py +17 -0
- ata_coder/event_queue.py +5 -0
- ata_coder/extension.py +654 -0
- ata_coder/extensions/__init__.py +1 -0
- ata_coder/extensions/hello_skill.py +47 -0
- ata_coder/fool_proof.py +295 -0
- ata_coder/git_workflow.py +371 -0
- ata_coder/gui.py +511 -0
- ata_coder/llm_client.py +543 -0
- ata_coder/main.py +814 -0
- ata_coder/mcp_client.py +1095 -0
- ata_coder/memory.py +539 -0
- ata_coder/model_registry.py +134 -0
- ata_coder/model_router.py +105 -0
- ata_coder/permissions.py +274 -0
- ata_coder/privilege.py +464 -0
- ata_coder/project.py +273 -0
- ata_coder/prompt_template.py +423 -0
- ata_coder/prompts/auto-mode.md +7 -0
- ata_coder/prompts/coding-rules.md +40 -0
- ata_coder/prompts/execution-guardrails.md +14 -0
- ata_coder/prompts/memory-system.md +24 -0
- ata_coder/prompts/output-style.md +23 -0
- ata_coder/prompts/safety.md +17 -0
- ata_coder/prompts/slash-commands.md +24 -0
- ata_coder/prompts/sub-agents.md +38 -0
- ata_coder/prompts/system-reminders.md +17 -0
- ata_coder/prompts/system.md +105 -0
- ata_coder/prompts/tool-policy.md +46 -0
- ata_coder/repl_theme.py +99 -0
- ata_coder/repl_tracker.py +89 -0
- ata_coder/repl_ui.py +1214 -0
- ata_coder/safety_guard.py +434 -0
- ata_coder/self_correct.py +346 -0
- ata_coder/server.py +882 -0
- ata_coder/server_session.py +159 -0
- ata_coder/server_shell.py +129 -0
- ata_coder/session.py +431 -0
- ata_coder/settings.py +439 -0
- ata_coder/setup_wizard.py +136 -0
- ata_coder/skill_extension.py +92 -0
- ata_coder/skills/architect/SKILL.md +42 -0
- ata_coder/skills/code-reviewer/SKILL.md +37 -0
- ata_coder/skills/codecraft/SKILL.md +452 -0
- ata_coder/skills/debugger/SKILL.md +45 -0
- ata_coder/skills/doc-writer/SKILL.md +36 -0
- ata_coder/skills/general-coder/SKILL.md +76 -0
- ata_coder/skills/math-calculator/README.md +40 -0
- ata_coder/skills/math-calculator/SKILL.md +59 -0
- ata_coder/skills/math-calculator/handler.py +103 -0
- ata_coder/skills/math-calculator/prompts/system.md +8 -0
- ata_coder/skills/math-calculator/requirements.txt +2 -0
- ata_coder/skills/math-calculator/resources/constants.json +8 -0
- ata_coder/skills/math-calculator/tests/test_handler.py +53 -0
- ata_coder/skills/security-auditor/SKILL.md +40 -0
- ata_coder/skills/test-writer/SKILL.md +36 -0
- ata_coder/skills/weather-skill/README.md +45 -0
- ata_coder/skills/weather-skill/handler.py +76 -0
- ata_coder/skills/weather-skill/manifest.json +48 -0
- ata_coder/skills/weather-skill/prompts/system_prompt.txt +9 -0
- ata_coder/skills/weather-skill/prompts/user_prompt_template.txt +3 -0
- ata_coder/skills/weather-skill/requirements.txt +1 -0
- ata_coder/skills/weather-skill/resources/city_list.json +17 -0
- ata_coder/skills/weather-skill/resources/error_messages.json +7 -0
- ata_coder/skills/weather-skill/tests/test_handler.py +28 -0
- ata_coder/skills/weather-skill/weather_utils.py +50 -0
- ata_coder/skills.py +1014 -0
- ata_coder/sub_agent.py +273 -0
- ata_coder/sub_agent_manager.py +203 -0
- ata_coder/system_prompt_builder.py +146 -0
- ata_coder/task_planner.py +391 -0
- ata_coder/terminal.py +318 -0
- ata_coder/test_runner.py +219 -0
- ata_coder/thread_supervisor.py +195 -0
- ata_coder/tool_defs.py +335 -0
- ata_coder/tools/__init__.py +11 -0
- ata_coder/tools/definitions.py +335 -0
- ata_coder/tools/executor.py +1036 -0
- ata_coder/tools/result.py +26 -0
- ata_coder/tools/subagent.py +332 -0
- ata_coder/tools/web.py +361 -0
- ata_coder/tools.py +1576 -0
- ata_coder/types.py +92 -0
- ata_coder/utils.py +113 -0
- ata_coder/web/css/style.css +180 -0
- ata_coder/web/index.html +84 -0
- ata_coder/web/js/app.js +489 -0
- ata_coder/web/package-lock.json +25 -0
- ata_coder/web/package.json +10 -0
- ata_coder/web/tsconfig.json +13 -0
- ata_coder-2.4.2.dist-info/METADATA +799 -0
- ata_coder-2.4.2.dist-info/RECORD +118 -0
- ata_coder-2.4.2.dist-info/WHEEL +5 -0
- ata_coder-2.4.2.dist-info/entry_points.txt +2 -0
- ata_coder-2.4.2.dist-info/licenses/LICENSE +21 -0
- ata_coder-2.4.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
ata_coder/__init__.py,sha256=5lJN1sgZIXD_fFDpcTk3RV4YBTnuMySY0S9LzTv1jyE,25
|
|
2
|
+
ata_coder/agent.py,sha256=DYVEDl95zj_tYaWIwB6GGWVd7tswGZwGt0bmSYwAXEU,40362
|
|
3
|
+
ata_coder/agent_compact.py,sha256=ravzD4zQEVlOI2zK8MWwBXETCxQ_Hs6RDAp6o1QVZro,9136
|
|
4
|
+
ata_coder/agent_controller.py,sha256=Ne6uiZsMr_ci6j9Ueopo1lp4UfBt1RPC52BCs_uU4aw,7733
|
|
5
|
+
ata_coder/agent_extension.py,sha256=fBtfKvHkVFJgBooJME8-nyl407PHbc5Q-dJhq1roayA,2913
|
|
6
|
+
ata_coder/agent_routing.py,sha256=rpbit9FWUUVX8fvVyB-OJYIKr15YSMt0M00ANejvmtk,4389
|
|
7
|
+
ata_coder/agent_subsystems.py,sha256=tJKr89JO__6PbMZVOVfxTZ-6Rp6RZeUx1GaqavvL6jQ,2139
|
|
8
|
+
ata_coder/agent_tools.py,sha256=Xw4kK2mtCrFIIApuvAYtt-H8FRCdsEvfjRi0-nP3hUY,15809
|
|
9
|
+
ata_coder/agent_undo.py,sha256=T_if6xDPAQulytY3wmq0c5c6Mv9Z-pLci72zLf_l8Ig,2508
|
|
10
|
+
ata_coder/anthropic_client.py,sha256=hCtTKkfYnKL-RTU3-vESAffgwayXRSIN97jcQl_GjQo,21217
|
|
11
|
+
ata_coder/change_tracker.py,sha256=eYs-rosDGe7jrJA-l19pPlTprFItgK21oEr-dFASrYM,15597
|
|
12
|
+
ata_coder/clawd_integration.py,sha256=tXgFE1WrwRQ618_lDWbQcGoaT4BpV2DF79jUmJD6W6c,21052
|
|
13
|
+
ata_coder/commands.py,sha256=_wahO_kzGe7NHiu9jrqusQed4mls6D7Cja8_FHg8ZZ0,40511
|
|
14
|
+
ata_coder/config.py,sha256=J8U1E07VMsTWyD4UlUym4mWlEuARmVo5oI8OMBw5Dbg,8596
|
|
15
|
+
ata_coder/event_queue.py,sha256=X8Vwk8qAMcrsv_t-D1oc6Tj2rS58vRNw_3G2G2iVdV0,171
|
|
16
|
+
ata_coder/extension.py,sha256=avm7mxVNKPG_69AtLbHV3YFXgExf8x5W2QKjhPcZ2_4,25010
|
|
17
|
+
ata_coder/fool_proof.py,sha256=Oq6nM2vnB1LFJkUGrzVqvGMIvKX-MChLecTUbt7t6dc,13311
|
|
18
|
+
ata_coder/git_workflow.py,sha256=3RjCG0LsFYAU5gkqGoA3nPYIrfMpVO1QpS0iLc3GXik,14578
|
|
19
|
+
ata_coder/gui.py,sha256=D0ovuBFOz6lTkkgJIpiRfFN0P3YExx0VLmYUGgdMo7Q,24596
|
|
20
|
+
ata_coder/llm_client.py,sha256=wvFi3XK_onUCZ_2VCztbjhnEnZ_b0HVEQYDKQ3-YRNU,22729
|
|
21
|
+
ata_coder/main.py,sha256=BuYDeVaSews-IZAWiK7adW-9Ud-s-ietr05UeBfI8aM,31672
|
|
22
|
+
ata_coder/mcp_client.py,sha256=zQB33nUKDHkq2-_-VbeG9a5aCHtQF2p9cT8BSKc3NVk,44603
|
|
23
|
+
ata_coder/memory.py,sha256=scyOUhtWGjm3bI9hTOYCh8FusqXZ_MN0Ymbs8LttvqM,22210
|
|
24
|
+
ata_coder/model_registry.py,sha256=7cXH4H0G0_nuzEaOGnTglsapLAwaIK5tX4fYL15PT8M,5991
|
|
25
|
+
ata_coder/model_router.py,sha256=m8IuVFOt3ZVwae-DqufIv2Z1ItcmgHtFACKKx9jpPIs,3997
|
|
26
|
+
ata_coder/permissions.py,sha256=Rtm4Bc0P065IV2IECW14DFWDtX_UdveYFyNY-r2CwoQ,10943
|
|
27
|
+
ata_coder/privilege.py,sha256=UZZZZ3mtmwUIXosfSThpVRn3fiOcq2xPnxprEOjRhAQ,19709
|
|
28
|
+
ata_coder/project.py,sha256=89RU8cjNfS8G34T20FiuAFhOKQcKmevtmoOaBBXURPw,10285
|
|
29
|
+
ata_coder/prompt_template.py,sha256=M59TFUYnc1IlnaiFZUJbmzaBrFwGRClXf5QgNkwnzvY,15660
|
|
30
|
+
ata_coder/repl_theme.py,sha256=lxIQDwiyYUYKtXu3Cgo4RyB-6IZ9_sNaLHXBCRBrsWg,4266
|
|
31
|
+
ata_coder/repl_tracker.py,sha256=AbqvR95U0PxWu9QXyAEwxcxYjYXHY6XFTKddWcKrxe0,3555
|
|
32
|
+
ata_coder/repl_ui.py,sha256=cOOVo3Bwcj765PFR8qx2_4W3jsIWZ5UQfcNuy1Lb8yI,55533
|
|
33
|
+
ata_coder/safety_guard.py,sha256=bOoKrwwne3YV5X9F7jzWScPxybDqmDHzukhkAJusm2Q,19059
|
|
34
|
+
ata_coder/self_correct.py,sha256=_ppHUykjqf-ZZi3HzY8eIMIUoarXnYyPp-7jvuLEQeQ,15079
|
|
35
|
+
ata_coder/server.py,sha256=InNPpPWWT3TqjMYLwueeK-bQqQd0FLLx45zZeRJTQuM,37690
|
|
36
|
+
ata_coder/server_session.py,sha256=bDZx7r0t_tvVd9IZPMam7mSheL4_knI7Kg6rbagXjY0,5745
|
|
37
|
+
ata_coder/server_shell.py,sha256=B3WVUsTuZPM9sQZLdO9tfe25EvwqoatDApG51DZfM3M,4358
|
|
38
|
+
ata_coder/session.py,sha256=3TnFVnLeEP5dDPIlSFHhihRUNc7EwmhR-GIEiaDZIqg,17578
|
|
39
|
+
ata_coder/settings.py,sha256=312C00XiwlHVWTwb_w5EWoWuuXK3ymhg5SbvgDF92Qk,17122
|
|
40
|
+
ata_coder/setup_wizard.py,sha256=zoalltcBznml5J--lPNANxfpjM9F7iGyYfOMsDNtKAk,4782
|
|
41
|
+
ata_coder/skill_extension.py,sha256=RSAwScGHZhehupoclr0-g7DqMb6jq6RDAxYxOEsT2FY,3074
|
|
42
|
+
ata_coder/skills.py,sha256=bD1uZ4akrsISFyVJEWSj14K6lXN42hZ-xqViBMPCgwU,43853
|
|
43
|
+
ata_coder/sub_agent.py,sha256=zlVpY1_amiGI2n7TX-YQSNzaO5Rg1Z6BSs6TzUnq6O0,10017
|
|
44
|
+
ata_coder/sub_agent_manager.py,sha256=KIOWyg_1yfHwf5LsxdP9nTSRKVDWlu6sZusJ3IOyNuk,7838
|
|
45
|
+
ata_coder/system_prompt_builder.py,sha256=1Zjgd3ebku4pLLwOb2hF8w_YWRQ3GLOsbmWqcK8LCpk,5548
|
|
46
|
+
ata_coder/task_planner.py,sha256=qwjN2g8q3ZJfY3aeM2DMzB_tkPesu5qBQsnPBncMLYw,15323
|
|
47
|
+
ata_coder/terminal.py,sha256=evW8pRHRURKRUJIyRkDBz7dYyZVQK3H5p3iX2olMEK4,11727
|
|
48
|
+
ata_coder/test_runner.py,sha256=qcSixZXvgr-J0Q8CLtehpBT8UGU3N3dkqv75as5QaXY,9067
|
|
49
|
+
ata_coder/thread_supervisor.py,sha256=JZTnqqEIioI1_fKF8hxaL6MHINVGKbAg9sNVecfBhYI,8100
|
|
50
|
+
ata_coder/tool_defs.py,sha256=tVzgaOoEEha-lmivFnZG3QlcoATYXU3EdxFuVAlzWEw,14045
|
|
51
|
+
ata_coder/tools.py,sha256=ecRSgdTpE3up6isg19-Kc8ZTFzkPJxpfMxrFmHkaRGk,64305
|
|
52
|
+
ata_coder/types.py,sha256=aUOFzOgLhOGbNsy6o5gwfr1aqoj3zq2WOznlWxo_28M,3040
|
|
53
|
+
ata_coder/utils.py,sha256=AhAoGSAB8nFs6NDi2bp_uGjCp268ibALkLDbo0UaDQc,4582
|
|
54
|
+
ata_coder/commands/__init__.py,sha256=Z2iWxUlsDU93PDo07JbOvf4vTmZ7XKGQymO7coS3CRc,5218
|
|
55
|
+
ata_coder/commands/_core.py,sha256=vKxEQyDwjr9oI3LPmjYI7lAezQaNnTiTfpSoxzhdRpY,7571
|
|
56
|
+
ata_coder/commands/_safety.py,sha256=Zi3Sw0o35zt8bHVAN5tCWTRYoFcW8xXTIfA7f4EBj_k,3890
|
|
57
|
+
ata_coder/commands/_settings.py,sha256=7kjSmWEpMSg9kGmFu6vgtr4EjYn8eMQu-ppYVQ6BnPk,9668
|
|
58
|
+
ata_coder/commands/_workflow.py,sha256=AaN-LHTzz8jtp2FHCutg_iizQI-LIZpez_CpucsVHAY,20337
|
|
59
|
+
ata_coder/core/__init__.py,sha256=0WnV60jxYczNJiwODN3-XDQ9zssq1obHJdI9abTclqc,656
|
|
60
|
+
ata_coder/core/events.py,sha256=TGlaMmzLL-BTpN6BlAPxT8fhq7267UdCgoxcDVaLUH8,1584
|
|
61
|
+
ata_coder/core/queue.py,sha256=aE_rwQsBXq5TzyVEzyry6u_r_BxJTdfIjJJ5kH13dTs,2573
|
|
62
|
+
ata_coder/core/state.py,sha256=carvszLWhnkquPKpfw2OzXzHal-FKFW1wvzLJfS0QX0,403
|
|
63
|
+
ata_coder/extensions/__init__.py,sha256=JjFhoHJz6_ADRHPzUtSZ5vekGU8e0f2Ty_WYIF3xCE8,71
|
|
64
|
+
ata_coder/extensions/hello_skill.py,sha256=msWCtGHtxArhYHWk_eZnlFSvbjq6hbCyPz8qk1H4c8E,1513
|
|
65
|
+
ata_coder/prompts/auto-mode.md,sha256=mi-Pp5o1PqK56egBxH6_re6J8BTWR04BZuXuTMahqQg,444
|
|
66
|
+
ata_coder/prompts/coding-rules.md,sha256=JTVSjjYX_EX-pNqZMsV8eFXpKDZsmJqZBHEm9FW58_E,2800
|
|
67
|
+
ata_coder/prompts/execution-guardrails.md,sha256=j5Adq6XXHDzEUvkT_mmab4AWRo31uU8W3ukmiRslIRM,1513
|
|
68
|
+
ata_coder/prompts/memory-system.md,sha256=87r_OZoOylBz_PmxbuBrnJzrOj9QC2bPHxqpwkCbSws,948
|
|
69
|
+
ata_coder/prompts/output-style.md,sha256=LI7jvsaP2dPnOth7yTQjnjKX88qIWnVK8AFNZJBLWfk,1319
|
|
70
|
+
ata_coder/prompts/safety.md,sha256=zEo2dDvo6dmmGI6KtOo0iIZRbvld__TLU-E3-Dvkhco,1432
|
|
71
|
+
ata_coder/prompts/slash-commands.md,sha256=wmtZF-GKFKgugC9jwIZ1jJXRCtGWL04TgzI_vbbhXE4,1312
|
|
72
|
+
ata_coder/prompts/sub-agents.md,sha256=7t7u2I8AR65IfAm97Z4qtS2O2Z6Plzi2z2JG86cc0w8,1547
|
|
73
|
+
ata_coder/prompts/system-reminders.md,sha256=pofaWpNNvhyFl3BCOlUwBucE4qkfJun88kVnPcQoM4Y,846
|
|
74
|
+
ata_coder/prompts/system.md,sha256=wBRzpKee4cOB0fP9V7vE2F_u7D911WogiSP71pAkXpg,7175
|
|
75
|
+
ata_coder/prompts/tool-policy.md,sha256=p1Uq_erL2sGg42aMB_ckPG-PJcdzjXy7OFpaZt_gKJM,3272
|
|
76
|
+
ata_coder/skills/architect/SKILL.md,sha256=8Pg83GPMenVD14JtaUEwb4mXNN_jAfLOJK6gpZhbE48,1166
|
|
77
|
+
ata_coder/skills/code-reviewer/SKILL.md,sha256=3y3znScCuCzEFHh5oxlPd0xOAglhocENKmNH5fh8Dzk,1115
|
|
78
|
+
ata_coder/skills/codecraft/SKILL.md,sha256=jmO5cinPQ7f6VwYXp0Kb0ul6GVGH8M6uBU_8guh8TzE,25677
|
|
79
|
+
ata_coder/skills/debugger/SKILL.md,sha256=mtSw4SY1ZNyQq_UHpCD55kYbZn1gwwc-zuU3gZe6G_Q,1084
|
|
80
|
+
ata_coder/skills/doc-writer/SKILL.md,sha256=r5L_DeQgz0NoPKyObXyUgjMiE55Qc4Ij4ZDOdeEN9LE,935
|
|
81
|
+
ata_coder/skills/general-coder/SKILL.md,sha256=NLnBgh7VEDFTTCcCQzYMTocjvKR0a34Sv83R43iSdV4,3123
|
|
82
|
+
ata_coder/skills/math-calculator/README.md,sha256=Sv0YgyvToOmg8UZ4IWaL6Y0weqJXz2V871U1Y9E75t4,932
|
|
83
|
+
ata_coder/skills/math-calculator/SKILL.md,sha256=ad_PZ0X9mDf1xUudAjY-DhwqI4a-K00TzcB4m8fyTMs,1635
|
|
84
|
+
ata_coder/skills/math-calculator/handler.py,sha256=pZQhYMr4VTiPUix6Z5-B-qA_eBtKxrvWMXaLlYkOnWE,3387
|
|
85
|
+
ata_coder/skills/math-calculator/requirements.txt,sha256=aHswojVUcWYWZUxZIuNXswHW-_Ba6PF5d8kw7WIJ_RY,86
|
|
86
|
+
ata_coder/skills/math-calculator/prompts/system.md,sha256=gOnc5BhjkyGqeuu2vVaWirg3HZ9QhiHoz2BmpLGL2mI,330
|
|
87
|
+
ata_coder/skills/math-calculator/resources/constants.json,sha256=uifL5HZ7hCTxUo7VZVa32DP6PLhLSWH2kv1Tv_vzFmU,198
|
|
88
|
+
ata_coder/skills/math-calculator/tests/test_handler.py,sha256=tpBoV0QfN8n6tWToatt10oBUGCC1A0BtxpyIgRmt2wg,1249
|
|
89
|
+
ata_coder/skills/security-auditor/SKILL.md,sha256=RJXOU131oJteHZtCWlK9BFpmCLh8DqwEskPdFuHd11k,1341
|
|
90
|
+
ata_coder/skills/test-writer/SKILL.md,sha256=ErfncZzaesWNZe1m_y83dfHM_tsY7WYZ6rcEx3zrmL4,986
|
|
91
|
+
ata_coder/skills/weather-skill/README.md,sha256=h7Ath05pdu_RbTE9_mnmSZCkfnu7KojRYZ4GhsiCXXk,960
|
|
92
|
+
ata_coder/skills/weather-skill/handler.py,sha256=ClnIfwxdsPMItbNee12uqdZOTfwL9BLvXpzhCcsd7fw,2486
|
|
93
|
+
ata_coder/skills/weather-skill/manifest.json,sha256=4rz2n5g5F92V7_BQqcQvei8C0C_Wtull1kuvwKo0OM0,1324
|
|
94
|
+
ata_coder/skills/weather-skill/requirements.txt,sha256=ixNTd5E5BmT20FZLU-qSQEXnV1m1cxg6ZFWMiaJ9_l4,15
|
|
95
|
+
ata_coder/skills/weather-skill/weather_utils.py,sha256=u_y7yvEbih-YHjeYU94blvK98mAGQog_lYfq99r5Oz8,1929
|
|
96
|
+
ata_coder/skills/weather-skill/prompts/system_prompt.txt,sha256=_4mespd-fS5oG62tIdlTLapid396GZqcO4x3lAQTmPc,393
|
|
97
|
+
ata_coder/skills/weather-skill/prompts/user_prompt_template.txt,sha256=RoPXzRGI8zSd1zC0U8pMStsJqHXevTfiuUM1PGOH5L0,113
|
|
98
|
+
ata_coder/skills/weather-skill/resources/city_list.json,sha256=QOSsTZ1raQnqG3gnHZMYDDN6q4sJCKN-y5PVM419dhk,1080
|
|
99
|
+
ata_coder/skills/weather-skill/resources/error_messages.json,sha256=kGxl5_qYX3f4xsnsFBgnvw6J8p88EcTc2rUzepqPwq8,412
|
|
100
|
+
ata_coder/skills/weather-skill/tests/test_handler.py,sha256=sSIXCJcDkDdO8_5zPvmJBo_XTEH1bFV-4ZDvw9VrQrk,912
|
|
101
|
+
ata_coder/tools/__init__.py,sha256=SB8_W0BQ2DGZeSCQGLV5LoRcJbCmbjGPc7l6tWHG6w4,415
|
|
102
|
+
ata_coder/tools/definitions.py,sha256=9M6MBy7lp_EG0qjzLIR6sG3b2ODBvPwsbRL9wVIh1hQ,14162
|
|
103
|
+
ata_coder/tools/executor.py,sha256=Djk2olw_YoDTY561tD2vcXmz_jrpyx3MngN6SxgPXWA,43506
|
|
104
|
+
ata_coder/tools/result.py,sha256=W0g3ryw_0L0dXytHoMnJ3ZiQhxIn6oXQKivXqG9FR2E,953
|
|
105
|
+
ata_coder/tools/subagent.py,sha256=81zbg5YLGFz8Zp5eL8b9PuDgEgHypksYXeUV1H1AnAQ,13337
|
|
106
|
+
ata_coder/tools/web.py,sha256=jwxCil90ApVaBYodG7LkTO6sbr1d8c3KYi6WKN-HSiA,14997
|
|
107
|
+
ata_coder/web/index.html,sha256=gfLYSvdX_jj38PZWohCMG1NXkhOBCsuT1mmi5cdgNFQ,2738
|
|
108
|
+
ata_coder/web/package-lock.json,sha256=_1uzvHeR-2G-zydltOkTCjWwA7TElMAHHwQ0CwSj6GQ,603
|
|
109
|
+
ata_coder/web/package.json,sha256=76fr_9aeBJhYZrXsLAfglJ0bATW5oB7zkuu2Sv_PmMw,140
|
|
110
|
+
ata_coder/web/tsconfig.json,sha256=XAWKfzJlRbVXjTUlL6hzI_WDUc-O-xN0vwNjNjSlyAE,263
|
|
111
|
+
ata_coder/web/css/style.css,sha256=5ynvTfH71eY0VBAiz1JwOVnmNzjzHNNRqW6M9XL7SaA,9161
|
|
112
|
+
ata_coder/web/js/app.js,sha256=4-wsUuwuvAtWPk2-5Mr7iXmNf616K8WrbWmOoUKiAwY,16899
|
|
113
|
+
ata_coder-2.4.2.dist-info/licenses/LICENSE,sha256=bbaLyB1i6cZE51qBgCVk3bs0mb9G1u0ttOGsatZntB0,1076
|
|
114
|
+
ata_coder-2.4.2.dist-info/METADATA,sha256=6FYOd2A1I1-NaWIldzL7u-I5JzvXuvvTqiP_BUGTERI,44224
|
|
115
|
+
ata_coder-2.4.2.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
116
|
+
ata_coder-2.4.2.dist-info/entry_points.txt,sha256=Agn-GHpVtkxobsYbnHhncQi_9L0PLDdMmpcPHYs-MEA,44
|
|
117
|
+
ata_coder-2.4.2.dist-info/top_level.txt,sha256=KsrotjKGr19tDzD9_6MQYbgfr6HJ_Sp0UpO8gn-oQxo,10
|
|
118
|
+
ata_coder-2.4.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-2026 ATA Coder Team
|
|
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 @@
|
|
|
1
|
+
ata_coder
|