emdash-core 0.1.7__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.
- emdash_core/__init__.py +3 -0
- emdash_core/agent/__init__.py +37 -0
- emdash_core/agent/agents.py +225 -0
- emdash_core/agent/code_reviewer.py +476 -0
- emdash_core/agent/compaction.py +143 -0
- emdash_core/agent/context_manager.py +140 -0
- emdash_core/agent/events.py +338 -0
- emdash_core/agent/handlers.py +224 -0
- emdash_core/agent/inprocess_subagent.py +377 -0
- emdash_core/agent/mcp/__init__.py +50 -0
- emdash_core/agent/mcp/client.py +346 -0
- emdash_core/agent/mcp/config.py +302 -0
- emdash_core/agent/mcp/manager.py +496 -0
- emdash_core/agent/mcp/tool_factory.py +213 -0
- emdash_core/agent/prompts/__init__.py +38 -0
- emdash_core/agent/prompts/main_agent.py +104 -0
- emdash_core/agent/prompts/subagents.py +131 -0
- emdash_core/agent/prompts/workflow.py +136 -0
- emdash_core/agent/providers/__init__.py +34 -0
- emdash_core/agent/providers/base.py +143 -0
- emdash_core/agent/providers/factory.py +80 -0
- emdash_core/agent/providers/models.py +220 -0
- emdash_core/agent/providers/openai_provider.py +463 -0
- emdash_core/agent/providers/transformers_provider.py +217 -0
- emdash_core/agent/research/__init__.py +81 -0
- emdash_core/agent/research/agent.py +143 -0
- emdash_core/agent/research/controller.py +254 -0
- emdash_core/agent/research/critic.py +428 -0
- emdash_core/agent/research/macros.py +469 -0
- emdash_core/agent/research/planner.py +449 -0
- emdash_core/agent/research/researcher.py +436 -0
- emdash_core/agent/research/state.py +523 -0
- emdash_core/agent/research/synthesizer.py +594 -0
- emdash_core/agent/reviewer_profile.py +475 -0
- emdash_core/agent/rules.py +123 -0
- emdash_core/agent/runner.py +601 -0
- emdash_core/agent/session.py +262 -0
- emdash_core/agent/spec_schema.py +66 -0
- emdash_core/agent/specification.py +479 -0
- emdash_core/agent/subagent.py +397 -0
- emdash_core/agent/subagent_prompts.py +13 -0
- emdash_core/agent/toolkit.py +482 -0
- emdash_core/agent/toolkits/__init__.py +64 -0
- emdash_core/agent/toolkits/base.py +96 -0
- emdash_core/agent/toolkits/explore.py +47 -0
- emdash_core/agent/toolkits/plan.py +55 -0
- emdash_core/agent/tools/__init__.py +141 -0
- emdash_core/agent/tools/analytics.py +436 -0
- emdash_core/agent/tools/base.py +131 -0
- emdash_core/agent/tools/coding.py +484 -0
- emdash_core/agent/tools/github_mcp.py +592 -0
- emdash_core/agent/tools/history.py +13 -0
- emdash_core/agent/tools/modes.py +153 -0
- emdash_core/agent/tools/plan.py +206 -0
- emdash_core/agent/tools/plan_write.py +135 -0
- emdash_core/agent/tools/search.py +412 -0
- emdash_core/agent/tools/spec.py +341 -0
- emdash_core/agent/tools/task.py +262 -0
- emdash_core/agent/tools/task_output.py +204 -0
- emdash_core/agent/tools/tasks.py +454 -0
- emdash_core/agent/tools/traversal.py +588 -0
- emdash_core/agent/tools/web.py +179 -0
- emdash_core/analytics/__init__.py +5 -0
- emdash_core/analytics/engine.py +1286 -0
- emdash_core/api/__init__.py +5 -0
- emdash_core/api/agent.py +308 -0
- emdash_core/api/agents.py +154 -0
- emdash_core/api/analyze.py +264 -0
- emdash_core/api/auth.py +173 -0
- emdash_core/api/context.py +77 -0
- emdash_core/api/db.py +121 -0
- emdash_core/api/embed.py +131 -0
- emdash_core/api/feature.py +143 -0
- emdash_core/api/health.py +93 -0
- emdash_core/api/index.py +162 -0
- emdash_core/api/plan.py +110 -0
- emdash_core/api/projectmd.py +210 -0
- emdash_core/api/query.py +320 -0
- emdash_core/api/research.py +122 -0
- emdash_core/api/review.py +161 -0
- emdash_core/api/router.py +76 -0
- emdash_core/api/rules.py +116 -0
- emdash_core/api/search.py +119 -0
- emdash_core/api/spec.py +99 -0
- emdash_core/api/swarm.py +223 -0
- emdash_core/api/tasks.py +109 -0
- emdash_core/api/team.py +120 -0
- emdash_core/auth/__init__.py +17 -0
- emdash_core/auth/github.py +389 -0
- emdash_core/config.py +74 -0
- emdash_core/context/__init__.py +52 -0
- emdash_core/context/models.py +50 -0
- emdash_core/context/providers/__init__.py +11 -0
- emdash_core/context/providers/base.py +74 -0
- emdash_core/context/providers/explored_areas.py +183 -0
- emdash_core/context/providers/touched_areas.py +360 -0
- emdash_core/context/registry.py +73 -0
- emdash_core/context/reranker.py +199 -0
- emdash_core/context/service.py +260 -0
- emdash_core/context/session.py +352 -0
- emdash_core/core/__init__.py +104 -0
- emdash_core/core/config.py +454 -0
- emdash_core/core/exceptions.py +55 -0
- emdash_core/core/models.py +265 -0
- emdash_core/core/review_config.py +57 -0
- emdash_core/db/__init__.py +67 -0
- emdash_core/db/auth.py +134 -0
- emdash_core/db/models.py +91 -0
- emdash_core/db/provider.py +222 -0
- emdash_core/db/providers/__init__.py +5 -0
- emdash_core/db/providers/supabase.py +452 -0
- emdash_core/embeddings/__init__.py +24 -0
- emdash_core/embeddings/indexer.py +534 -0
- emdash_core/embeddings/models.py +192 -0
- emdash_core/embeddings/providers/__init__.py +7 -0
- emdash_core/embeddings/providers/base.py +112 -0
- emdash_core/embeddings/providers/fireworks.py +141 -0
- emdash_core/embeddings/providers/openai.py +104 -0
- emdash_core/embeddings/registry.py +146 -0
- emdash_core/embeddings/service.py +215 -0
- emdash_core/graph/__init__.py +26 -0
- emdash_core/graph/builder.py +134 -0
- emdash_core/graph/connection.py +692 -0
- emdash_core/graph/schema.py +416 -0
- emdash_core/graph/writer.py +667 -0
- emdash_core/ingestion/__init__.py +7 -0
- emdash_core/ingestion/change_detector.py +150 -0
- emdash_core/ingestion/git/__init__.py +5 -0
- emdash_core/ingestion/git/commit_analyzer.py +196 -0
- emdash_core/ingestion/github/__init__.py +6 -0
- emdash_core/ingestion/github/pr_fetcher.py +296 -0
- emdash_core/ingestion/github/task_extractor.py +100 -0
- emdash_core/ingestion/orchestrator.py +540 -0
- emdash_core/ingestion/parsers/__init__.py +10 -0
- emdash_core/ingestion/parsers/base_parser.py +66 -0
- emdash_core/ingestion/parsers/call_graph_builder.py +121 -0
- emdash_core/ingestion/parsers/class_extractor.py +154 -0
- emdash_core/ingestion/parsers/function_extractor.py +202 -0
- emdash_core/ingestion/parsers/import_analyzer.py +119 -0
- emdash_core/ingestion/parsers/python_parser.py +123 -0
- emdash_core/ingestion/parsers/registry.py +72 -0
- emdash_core/ingestion/parsers/ts_ast_parser.js +313 -0
- emdash_core/ingestion/parsers/typescript_parser.py +278 -0
- emdash_core/ingestion/repository.py +346 -0
- emdash_core/models/__init__.py +38 -0
- emdash_core/models/agent.py +68 -0
- emdash_core/models/index.py +77 -0
- emdash_core/models/query.py +113 -0
- emdash_core/planning/__init__.py +7 -0
- emdash_core/planning/agent_api.py +413 -0
- emdash_core/planning/context_builder.py +265 -0
- emdash_core/planning/feature_context.py +232 -0
- emdash_core/planning/feature_expander.py +646 -0
- emdash_core/planning/llm_explainer.py +198 -0
- emdash_core/planning/similarity.py +509 -0
- emdash_core/planning/team_focus.py +821 -0
- emdash_core/server.py +153 -0
- emdash_core/sse/__init__.py +5 -0
- emdash_core/sse/stream.py +196 -0
- emdash_core/swarm/__init__.py +17 -0
- emdash_core/swarm/merge_agent.py +383 -0
- emdash_core/swarm/session_manager.py +274 -0
- emdash_core/swarm/swarm_runner.py +226 -0
- emdash_core/swarm/task_definition.py +137 -0
- emdash_core/swarm/worker_spawner.py +319 -0
- emdash_core/swarm/worktree_manager.py +278 -0
- emdash_core/templates/__init__.py +10 -0
- emdash_core/templates/defaults/agent-builder.md.template +82 -0
- emdash_core/templates/defaults/focus.md.template +115 -0
- emdash_core/templates/defaults/pr-review-enhanced.md.template +309 -0
- emdash_core/templates/defaults/pr-review.md.template +80 -0
- emdash_core/templates/defaults/project.md.template +85 -0
- emdash_core/templates/defaults/research_critic.md.template +112 -0
- emdash_core/templates/defaults/research_planner.md.template +85 -0
- emdash_core/templates/defaults/research_synthesizer.md.template +128 -0
- emdash_core/templates/defaults/reviewer.md.template +81 -0
- emdash_core/templates/defaults/spec.md.template +41 -0
- emdash_core/templates/defaults/tasks.md.template +78 -0
- emdash_core/templates/loader.py +296 -0
- emdash_core/utils/__init__.py +45 -0
- emdash_core/utils/git.py +84 -0
- emdash_core/utils/image.py +502 -0
- emdash_core/utils/logger.py +51 -0
- emdash_core-0.1.7.dist-info/METADATA +35 -0
- emdash_core-0.1.7.dist-info/RECORD +187 -0
- emdash_core-0.1.7.dist-info/WHEEL +4 -0
- emdash_core-0.1.7.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
emdash_core/__init__.py,sha256=0dZxdypWrXjxbpwqqe2GVhmjTPgy4HkMJfialtlf3Zk,81
|
|
2
|
+
emdash_core/agent/__init__.py,sha256=78P3l8dMA9Qepg0b8WMOWobrhmIpzn4Y0TXtgfndQ8E,1061
|
|
3
|
+
emdash_core/agent/agents.py,sha256=CCsDJSl9Vwhitc71L9oQ6SO_qhhyumI7L07Osmgugcg,5825
|
|
4
|
+
emdash_core/agent/code_reviewer.py,sha256=oUXcDbk773kwYtcCsUNEjb_ipS9rLeCKIv_IEUiUA9k,16467
|
|
5
|
+
emdash_core/agent/compaction.py,sha256=_smuIjmzaiblr6viRFByQCekRzoZDTetcaXRLQol8CI,4102
|
|
6
|
+
emdash_core/agent/context_manager.py,sha256=3HBQFRwsq1bBx6R7FQp7xFsiW0zPLPnOF-8Ox4Y6K44,3676
|
|
7
|
+
emdash_core/agent/events.py,sha256=6B31P2peEmvDzJJtC1J6SnBWgtSJ8b29xQSANUzUTko,10272
|
|
8
|
+
emdash_core/agent/handlers.py,sha256=3zo76GT3cTfYayK1qvP2NFo14AXHfA36X-yaa7Xm3T0,7135
|
|
9
|
+
emdash_core/agent/inprocess_subagent.py,sha256=PJ6ItCT9fdT8klIQ0dCZ4g_xPoKrAjT3Ui4z8Mvu6V8,11159
|
|
10
|
+
emdash_core/agent/mcp/__init__.py,sha256=qzQMJJOgOYVb6X2uyJxTIGgV5x35Dn7H3IglZxToX_c,1081
|
|
11
|
+
emdash_core/agent/mcp/client.py,sha256=_ae6CWRnJfG_mcCcIYZJYbWjajpZC-WmZgsZsRaahco,9753
|
|
12
|
+
emdash_core/agent/mcp/config.py,sha256=JrO7xIC3oSiFlxeTVynKm1pq2CrYdqzTsIJj9neSJLQ,9220
|
|
13
|
+
emdash_core/agent/mcp/manager.py,sha256=i4OIJyAwfBAw0E8fe6NIOvT-UTf1_hmDbEtIjtAhRjc,15382
|
|
14
|
+
emdash_core/agent/mcp/tool_factory.py,sha256=jtQJ2TW7KdGVSg3fUp9-rm7MbHjiwWmy0yLfwr0H4qc,6410
|
|
15
|
+
emdash_core/agent/prompts/__init__.py,sha256=EMLIp-YC5CL02W4Pk3DPTxMxVM2fE4qM9hX3abDiadE,845
|
|
16
|
+
emdash_core/agent/prompts/main_agent.py,sha256=3BTmdRI706yw4j5AASvBKqTY6gIZSFKRytWfPPVd4dg,3399
|
|
17
|
+
emdash_core/agent/prompts/subagents.py,sha256=OExWESyPEy7O9kMEiIzuDkKeIPvHX2miieQSPEVG0uc,3863
|
|
18
|
+
emdash_core/agent/prompts/workflow.py,sha256=EpLSg8DZaMbOHBpQtmsE94yMkMId-Y0NL6wFnsfCiRI,4112
|
|
19
|
+
emdash_core/agent/providers/__init__.py,sha256=q58ektAl1zwuS3z36ctHfLB8XruYghT97aq_oj1T_G0,776
|
|
20
|
+
emdash_core/agent/providers/base.py,sha256=qRHuLOXt5p0v0ewbcKpIANVy46KAG1rsDDyBdSr2NUM,4098
|
|
21
|
+
emdash_core/agent/providers/factory.py,sha256=F3bKXvZuLOJn--m5eTblUf3_xdzzbnW97YNDDbQBgJQ,3143
|
|
22
|
+
emdash_core/agent/providers/models.py,sha256=3klv592DjNgMtR0EZ45-G2ylQNOCC_II_2Ki5POpbFs,8442
|
|
23
|
+
emdash_core/agent/providers/openai_provider.py,sha256=2zuTaUFvq3Zkp6cG_r6zFcYpdjLw_SLkOM_gIPNGZGw,15481
|
|
24
|
+
emdash_core/agent/providers/transformers_provider.py,sha256=USSzYIcZrcTAKDKwiNobYUDS024ZVZ34WAuYWGbs9Nk,7167
|
|
25
|
+
emdash_core/agent/research/__init__.py,sha256=4LU9Skk3sxsDy8GzfOxCjNxxqaxOm94hV5cH-Nyqn7g,1992
|
|
26
|
+
emdash_core/agent/research/agent.py,sha256=dGjSZL2rsuJmSRpa8060R5gIvX8rIj57Zs21LsBJ-1U,3819
|
|
27
|
+
emdash_core/agent/research/controller.py,sha256=fWR8dXW68PCPqspyEjeJolJtDOKwaxeoa_eZh8rESlU,8197
|
|
28
|
+
emdash_core/agent/research/critic.py,sha256=99PAP-Acr2AegDib0FOP3sgt1oHdKbiicONkkYyssf4,13317
|
|
29
|
+
emdash_core/agent/research/macros.py,sha256=3EM-7_zbetCbd2QeyDwG6NOt3i_OTIWF1nY75nh-OT4,15152
|
|
30
|
+
emdash_core/agent/research/planner.py,sha256=2TjWKqbLg-fv5bEfc6-g729v0kQ5vs7FT-VIhxTG4HM,14333
|
|
31
|
+
emdash_core/agent/research/researcher.py,sha256=RIcLkah0LcD_QNP7FgU_MZeblLRiZQIOubHwvqdghtw,14305
|
|
32
|
+
emdash_core/agent/research/state.py,sha256=P44YUTUhMrAmt--xsj8Hi0SzbDmrLXKPEf83HF2mqZs,18010
|
|
33
|
+
emdash_core/agent/research/synthesizer.py,sha256=j4UvH8JxUjo7RF-h69tpRERgN6pHSb8qNBOoKrH2Qro,19016
|
|
34
|
+
emdash_core/agent/reviewer_profile.py,sha256=RkJ_Mk5vbp2U-e0UBWB-k59cHsTzLj0aro22KJVCbss,16075
|
|
35
|
+
emdash_core/agent/rules.py,sha256=GVwfM6YlRxrPXLZ0h2cZFOx4l_mPPl0Bdwt8oxfMBLI,3014
|
|
36
|
+
emdash_core/agent/runner.py,sha256=tb0ILSOYwBEFFLpYmwWyMbNE7N64bKNdFO7wO9i60IM,21787
|
|
37
|
+
emdash_core/agent/session.py,sha256=Zr7m8IK4-J6CDIMmN2QiSqpDT_O2S-SXu3Qmy9w6dk8,8517
|
|
38
|
+
emdash_core/agent/spec_schema.py,sha256=tmTCrO4zKXkOblW6gRyrQ3_ZdYU-ehnLE8YmZbhPHWQ,1429
|
|
39
|
+
emdash_core/agent/specification.py,sha256=b1nUQiGT4NiRv42hDkYAXVX_RtsKcHrf4Ae1dx0UVnc,19105
|
|
40
|
+
emdash_core/agent/subagent.py,sha256=zIlhbHOCUEgYtYLYwiQ7dkSleqI60emyBA-5XLPaH_k,12150
|
|
41
|
+
emdash_core/agent/subagent_prompts.py,sha256=pJJPXh4FlnE8bt9d-Ruquz6j8W-BS9pMCbXRqpgwq4g,407
|
|
42
|
+
emdash_core/agent/toolkit.py,sha256=qEXCvxpd_sJAWJLeU9Qvza3x6GH3NtqEWPmuj11vtOk,16706
|
|
43
|
+
emdash_core/agent/toolkits/__init__.py,sha256=HrWyA1M666V0UZ6P7YISnnQg4rblWbIFW_HcMKlHfK4,1814
|
|
44
|
+
emdash_core/agent/toolkits/base.py,sha256=Z4IMrli7UMi7K3rWhqfph_5vv9Tdnc0M8iCQDgE_3lM,2587
|
|
45
|
+
emdash_core/agent/toolkits/explore.py,sha256=ymyvLjIXy80h3lb4y_DZ06T0vADCal976qMW19J6N8A,1395
|
|
46
|
+
emdash_core/agent/toolkits/plan.py,sha256=S5VnewUpSHOgpieiph3EuA_qPOUS7EpG198EuqNVG3o,1820
|
|
47
|
+
emdash_core/agent/tools/__init__.py,sha256=r2gI_DjudTku7pIKwcndRxxpawvp5EDm2AuWhL31NPo,2918
|
|
48
|
+
emdash_core/agent/tools/analytics.py,sha256=tEP_RWFpKGfFW_Yc5inMMjAkDFzpDQ77Ui_Ca7LQu60,14837
|
|
49
|
+
emdash_core/agent/tools/base.py,sha256=3clLKgR7Og5eDijZJLEcpJS1YV8u1rW_pXr_iwHdxTo,3349
|
|
50
|
+
emdash_core/agent/tools/coding.py,sha256=plz_prz_lg6JEUzF_yvbADoHSyZ_3i6wdEh7GiS5YOE,14343
|
|
51
|
+
emdash_core/agent/tools/github_mcp.py,sha256=D4fu_z9j-rL8SHD8TA2tO-ED-8Q4QB_RHQoqsh7Bjy8,16870
|
|
52
|
+
emdash_core/agent/tools/history.py,sha256=Zaers4Aul9-hrlMaGRcQHwfU2xb7yCjHFHSDtfMe3c4,423
|
|
53
|
+
emdash_core/agent/tools/modes.py,sha256=l9xOdG1R13WRCSJnegCh4PUmZLltSPgd144Z0byB0L0,4239
|
|
54
|
+
emdash_core/agent/tools/plan.py,sha256=RRvZsDHcvvDv6uyDSGhTYIoImZmI_7CCxCarkeSZjbQ,7922
|
|
55
|
+
emdash_core/agent/tools/plan_write.py,sha256=o4EEHTUr1hRfH3WSjrh3-QTfaJuUhjsQ5bJNBPD_j5Q,4417
|
|
56
|
+
emdash_core/agent/tools/search.py,sha256=8687DLMI1qi5Ld1ZpQl5hZG_PcKVQ7iwOoAIEU6Pkbw,14133
|
|
57
|
+
emdash_core/agent/tools/spec.py,sha256=QmDbhLfXkYmFhBFNrgPoADmcPWjT5-_wXOwZgjqZeDg,11585
|
|
58
|
+
emdash_core/agent/tools/task.py,sha256=-xM2GFdBnchrVNiOHgxa0hWQyvum4sC4QgBf3y5N_64,8906
|
|
59
|
+
emdash_core/agent/tools/task_output.py,sha256=30EI8JAKBDw6gLmjF8bXAq00yMr-Qk14J7fv2kDVX1c,6421
|
|
60
|
+
emdash_core/agent/tools/tasks.py,sha256=VS6VWgJtZiBdC16UigN90GTvKbPCm_PYLuC0r9vLl5w,14764
|
|
61
|
+
emdash_core/agent/tools/traversal.py,sha256=qQvHkledo_rT9q9kxk07pijY8XqkR4WWB5pFWVmG01I,20249
|
|
62
|
+
emdash_core/agent/tools/web.py,sha256=cqm4eiiBzeGCOmQE---uT9zlgsQUX9WY_YYz7wQbK1U,5521
|
|
63
|
+
emdash_core/analytics/__init__.py,sha256=5ky2djAly3-3lbQmUuNJlJTmBDaXjN2lOUw-OP2F1Zk,98
|
|
64
|
+
emdash_core/analytics/engine.py,sha256=f1go7SNnSlM_sFUEvmHrD4PTY9G39REBC7w01xdh3as,47738
|
|
65
|
+
emdash_core/api/__init__.py,sha256=L11AeV6gaCJjlZ8DU_q-lcuZYH9WV3BV4GYq8JF8BuI,92
|
|
66
|
+
emdash_core/api/agent.py,sha256=kjNNG2LdISjzOiP9Bdbo4FFxh9GjyA1upQESVQrKhOk,8656
|
|
67
|
+
emdash_core/api/agents.py,sha256=kInkI6iGnQuRxz5wS9w_Owq-4iceUJgugIOrWGDLkGA,3673
|
|
68
|
+
emdash_core/api/analyze.py,sha256=cR6wWzqSvp_5cNyUg0qACNF7DYdrcNkzhmRqgaqnd78,7593
|
|
69
|
+
emdash_core/api/auth.py,sha256=vnhH_xcsoTDYrCDBDytlm0LOV9yDoar04NL5FZKI8JU,4832
|
|
70
|
+
emdash_core/api/context.py,sha256=d7KNp0xtqhECXHm80MKg9_w4ZuzaaTjGj3TVVn1nT1E,2003
|
|
71
|
+
emdash_core/api/db.py,sha256=3Y702OOO-RTMRQxvKaaNW3x2f74agTSdyEKserPjyg4,3162
|
|
72
|
+
emdash_core/api/embed.py,sha256=fi7bvXRaYJg-lR7dMF6czYgyMi1Hcu4undoCEO6VqEM,4065
|
|
73
|
+
emdash_core/api/feature.py,sha256=DFqYMAjtmo4jzjdI1u1vWDBU-heCsUl_bziKW7qjheQ,4759
|
|
74
|
+
emdash_core/api/health.py,sha256=MBFvhauwjoY75omSO-X0jyh1Rr9WSLVy_DkSLpDbFn0,2370
|
|
75
|
+
emdash_core/api/index.py,sha256=1rBD496N0sa3rkuiNFzkbeqPWS8XJXtxMIZzdnBsctI,5268
|
|
76
|
+
emdash_core/api/plan.py,sha256=k5b-nhSpo18Y-HI4RAqmabJWvLXTx9tt0cR3PNj9ewQ,3350
|
|
77
|
+
emdash_core/api/projectmd.py,sha256=KC0T_8TpKdASWdUGd3SytjuH8YH3cJEMkZgFU2tDg68,5966
|
|
78
|
+
emdash_core/api/query.py,sha256=90HuhYGRiPtolYMBdlYcgW8DV_SvYo0H2xZ_YUWVPRw,10188
|
|
79
|
+
emdash_core/api/research.py,sha256=_r0BDkvzLRE2sF4yMQye9IqSeu9yBGlXAYdr-LAlnm8,3511
|
|
80
|
+
emdash_core/api/review.py,sha256=zOGrwwThZP_himnFyBKCl4mo4gjniuEaWGNWqcKajb0,4766
|
|
81
|
+
emdash_core/api/router.py,sha256=f0_80x8HbDC3rvAteSgfjMfq4lmCF7CrK1FAdR0S1uY,1476
|
|
82
|
+
emdash_core/api/rules.py,sha256=BbIE_RKX8VGlUqxny0OK-tKoTK58bDBFXBf_1x3yN7g,3242
|
|
83
|
+
emdash_core/api/search.py,sha256=qPVVTNRExbyG4Ri3X3F5uGpILhlvtH99dHBv7ZVkRIw,3696
|
|
84
|
+
emdash_core/api/spec.py,sha256=ub09u1mkqpcF-z0Q1YU9FAkJb0LDyV_eG0_KXYLFmuk,2912
|
|
85
|
+
emdash_core/api/swarm.py,sha256=-CNY-NCVnwes0MlHV5yq_ZUie8pJxt0Fdg4g5R94dKo,6561
|
|
86
|
+
emdash_core/api/tasks.py,sha256=kyrhSc46wfwM3csOT26Gsx9SNjKSTwC9BQ5qMqe1uaY,3160
|
|
87
|
+
emdash_core/api/team.py,sha256=nHdsTIQ-ZDlpByNIVpSl4Ahf4q51A_HwQTnnmBq6agA,3308
|
|
88
|
+
emdash_core/auth/__init__.py,sha256=NpcoEyqtqYwUTKKFwNGKgroPOGtXS5rUpH2D9t2_4TY,290
|
|
89
|
+
emdash_core/auth/github.py,sha256=__qpcWbi9dWC4W9FQfyJ6KEg7N1gXQW9k9Aub45EQ_o,11269
|
|
90
|
+
emdash_core/config.py,sha256=2avAiSrmKRj1kPE3EVQFkrXuBch-SFWAAaVdkTAMR1g,2215
|
|
91
|
+
emdash_core/context/__init__.py,sha256=_6hqH8FtCi4Q3OpuC9zDPDEXuBitLxrY20CdookRTsY,1496
|
|
92
|
+
emdash_core/context/models.py,sha256=eQdjaea5M6iQ-9ZxJ5IVQgiQEPbZz81Xe2B186GuSYI,1304
|
|
93
|
+
emdash_core/context/providers/__init__.py,sha256=cWokJwYatvihXoyhqM6BHbG4JQeImgWzyjLdj60BqS4,261
|
|
94
|
+
emdash_core/context/providers/base.py,sha256=AtWkQcigXeG4rX6WcGkXGrML5QeRUusn2FPvy4nCzLA,2234
|
|
95
|
+
emdash_core/context/providers/explored_areas.py,sha256=8sha0T-2IjfX6g25mh58XW1XrBhpH9d30dYMxmOJswk,7009
|
|
96
|
+
emdash_core/context/providers/touched_areas.py,sha256=BLnPkYsQSS9InW9rDUDTlOhoE6QldteWYxpMeU73if8,12858
|
|
97
|
+
emdash_core/context/registry.py,sha256=p_F0APYsLTDbZbcNkVzw2ET0AMg5UdySUKstxML8jUA,2273
|
|
98
|
+
emdash_core/context/reranker.py,sha256=xoajICW7yhxBtq6yJnFDzQXRl0_G8W-ACQyalZ72UbE,5944
|
|
99
|
+
emdash_core/context/service.py,sha256=vTSCUoXdNGTTs0ZtMHInX3uG5Wbol-lpCXEn4ICNCDo,9438
|
|
100
|
+
emdash_core/context/session.py,sha256=XqDELflx7TGosraTU3mBJcZLwD1Ihv2DtuFjeoxjF7A,12424
|
|
101
|
+
emdash_core/core/__init__.py,sha256=KW97frnmqf5PWHIvYpdZN7aaAPaUXWfsLEEicdZ3g80,1987
|
|
102
|
+
emdash_core/core/config.py,sha256=ApiKr5kKwSKWhr08dosZ1EvTMcfZ5PVMo4FsBlP9cac,15474
|
|
103
|
+
emdash_core/core/exceptions.py,sha256=LA4bsgEmPJUKQiBmrMpbPT6Iatu4xQLdenGMceMD2Yk,1186
|
|
104
|
+
emdash_core/core/models.py,sha256=U2achHuaaP9Qr2qZEqBvdzpbxNN2z-SJWjjGpBBiCu4,7810
|
|
105
|
+
emdash_core/core/review_config.py,sha256=pP8d_0D6mzKg2iYLjrbF9XcI8FIPLwZa0onUDUTvgkM,1455
|
|
106
|
+
emdash_core/db/__init__.py,sha256=hGJeI4MqisrE5adATeXZxB9I0GZOArPs7kw2jgOcs8Y,1478
|
|
107
|
+
emdash_core/db/auth.py,sha256=pfIbbjbf4txhvdSMFFSdW1pEFxkP-Sc2fMY5X4KJAJ8,3999
|
|
108
|
+
emdash_core/db/models.py,sha256=JdVmYC19DZ6yAOMgCRYCvd1QNTT1bS6knIXzNOjdYv8,2057
|
|
109
|
+
emdash_core/db/provider.py,sha256=Ip99Lk8cSpRDvxYtnCTaYGAM3BYjHWzZKUD6PcqSs8I,6561
|
|
110
|
+
emdash_core/db/providers/__init__.py,sha256=QxhyPLTJMeMcHY2aIgQB1ezEoCiP3D3sp5R3b5jZhO4,113
|
|
111
|
+
emdash_core/db/providers/supabase.py,sha256=t2RWZbPiusPZT2JZm4J-0meF7fdGdhMe_jH51tz8xVo,16083
|
|
112
|
+
emdash_core/embeddings/__init__.py,sha256=NnmjaDSVOxX_H9yGQxTlaoBa97HMY_8Lv1pmIFta-6M,635
|
|
113
|
+
emdash_core/embeddings/indexer.py,sha256=_LNZyNP6mjSJTeCbsOfSzAHUqEZJQ1TO7EThGBSaUt0,19947
|
|
114
|
+
emdash_core/embeddings/models.py,sha256=YLiJW7TFJ5roomw2AxAnB8SG4ywY33haJHXZsrU_rWs,6457
|
|
115
|
+
emdash_core/embeddings/providers/__init__.py,sha256=EJwfudhWGa2KfYoMmGYgRLq8bDmt_jE6yDWcu3Zm5j0,220
|
|
116
|
+
emdash_core/embeddings/providers/base.py,sha256=ciEqeGCbIVm0cFEGTKSsI96rmKwgcXYnwYkLg3FjMnw,3038
|
|
117
|
+
emdash_core/embeddings/providers/fireworks.py,sha256=WEJq1nzQIhECLzxgqnVHtOlkzDdVn_jw8UbUaRL5ZAk,4554
|
|
118
|
+
emdash_core/embeddings/providers/openai.py,sha256=sMHk7uG3Xt7hPjtOGGPkSxaFBF15PN2azPp9eOGbJfU,3287
|
|
119
|
+
emdash_core/embeddings/registry.py,sha256=me9G8xRCpA8XK2U84X-a2auie-VsOmVuQuPwMhQmLwc,5193
|
|
120
|
+
emdash_core/embeddings/service.py,sha256=nvSpMsqzoEnZA7iwLHwTWMqR3YzeFnbGFrL1RmN9F38,6649
|
|
121
|
+
emdash_core/graph/__init__.py,sha256=H8Ib_jH6Tu8EGKYw8pAaiFrmMMOvty7AMiOiypbKA4M,530
|
|
122
|
+
emdash_core/graph/builder.py,sha256=INh81gubFgmow25eNm2Z139p9VAmZhRx9pyylOhJxgw,4531
|
|
123
|
+
emdash_core/graph/connection.py,sha256=ZhMPQpPv_oQOUzdObfwswnuTivsYs90Mawi6DejbYI8,22113
|
|
124
|
+
emdash_core/graph/schema.py,sha256=FqKn-fFF9lcv6MhqcnjNjxcPoLji1gy-UspfInTOHaE,13296
|
|
125
|
+
emdash_core/graph/writer.py,sha256=QleDLLB2PTj2cd3vFMrgZXZWk9-_sC1MZMFzFZHjFnE,26191
|
|
126
|
+
emdash_core/ingestion/__init__.py,sha256=hyGLUPT04C9RXj7zaJF_389-8KA6xQN8zCX8l2v_NZ0,276
|
|
127
|
+
emdash_core/ingestion/change_detector.py,sha256=LOAODz_apk4ZRfAINz4lf2gCEq1zqQk0bkRnfRrn9oM,5312
|
|
128
|
+
emdash_core/ingestion/git/__init__.py,sha256=WI754ZInqIQ1JW057Hym1qXUTejhsVdmZ-LTWHXSeLk,113
|
|
129
|
+
emdash_core/ingestion/git/commit_analyzer.py,sha256=4DftTUgycv6u695RxaVAIL4VzsTApgdhoSECjDdWPho,6692
|
|
130
|
+
emdash_core/ingestion/github/__init__.py,sha256=G5SR95r5heXPfcgNUpvN241x8zXs0IuyOQjmbPIDOGM,156
|
|
131
|
+
emdash_core/ingestion/github/pr_fetcher.py,sha256=zs2xijWTkHEEYdHpNVVzq1W2V8hmBelS39H5b3Ei77c,9539
|
|
132
|
+
emdash_core/ingestion/github/task_extractor.py,sha256=PNkm8xEAlss3MWDY_iRdLlxmyJBca3jRjNCVYoRVp0E,2679
|
|
133
|
+
emdash_core/ingestion/orchestrator.py,sha256=qToPFJOnnQrGfp7FeizxOU3sdCJhMZtj4bZ7scpiZ5k,19740
|
|
134
|
+
emdash_core/ingestion/parsers/__init__.py,sha256=_zathXaXCNKL-Qiezvi3UCxxRnBHCTUOXYOcpoteExU,347
|
|
135
|
+
emdash_core/ingestion/parsers/base_parser.py,sha256=rlNsMLfZ4nOp7ufqTbfd-7vXP9oPoqumgt5gW72efU4,2072
|
|
136
|
+
emdash_core/ingestion/parsers/call_graph_builder.py,sha256=GUqvKAOIM1gnGTph4risf-E6hJnXJhFpPbBsYPyxLu4,3703
|
|
137
|
+
emdash_core/ingestion/parsers/class_extractor.py,sha256=-LgIRxPRc2SLqKVunS_5zszoX7ospkB7pIBR11b985c,4935
|
|
138
|
+
emdash_core/ingestion/parsers/function_extractor.py,sha256=tlKMq53YXcCz4GVgLXsyUonMEETNCDgJPUnSNyzWpBc,6690
|
|
139
|
+
emdash_core/ingestion/parsers/import_analyzer.py,sha256=qxyf320ISJnqwUF3VILb9lNSD4jTXHGOAYbQQChn8F0,4226
|
|
140
|
+
emdash_core/ingestion/parsers/python_parser.py,sha256=n4yc9FwE91DCjqI_BOM4EK2NR_wMPpCWA9Gscz1nzAk,3968
|
|
141
|
+
emdash_core/ingestion/parsers/registry.py,sha256=fgq-dWfEUpACuWFCPxbcQYH4gQSYqDYJnvJXFNAwb8M,2074
|
|
142
|
+
emdash_core/ingestion/parsers/ts_ast_parser.js,sha256=bvFEl97bzI-UItTvYkyT5D0rxXWqSGYlCF-Ph5FdMoI,9744
|
|
143
|
+
emdash_core/ingestion/parsers/typescript_parser.py,sha256=UHEuKUwaEkrscZ7NEisBWcZxJ1Ltn7pUvsdTdccqMGY,10928
|
|
144
|
+
emdash_core/ingestion/repository.py,sha256=ZyKw4NYTIgw35LbkYSsqwNmQoGkpVq06q0qm6lFMGGM,10287
|
|
145
|
+
emdash_core/models/__init__.py,sha256=zTsIg4Sy2o2eTWGIpYP9rb_yFdR-DFZ1BSWF9DcrHqU,625
|
|
146
|
+
emdash_core/models/agent.py,sha256=MgqLjBTGKrPQ5coxu0HmoyvpPDhLaUB7r62JnQE4NCw,1816
|
|
147
|
+
emdash_core/models/index.py,sha256=1dohTHOYvtOLmphGUELwgGH7DkMbhK_ykFn2_YmOtag,2207
|
|
148
|
+
emdash_core/models/query.py,sha256=3ZRTUzZoBr9IRrniXNLq2egUkg3k5tb9BXyu4xPB2DY,3480
|
|
149
|
+
emdash_core/planning/__init__.py,sha256=6db3V1maLCicMlRuG3JfGCnH84MxcdRrwBsGddlxVCg,267
|
|
150
|
+
emdash_core/planning/agent_api.py,sha256=9jyn9ltwPSQ6-1-z3NJKMASrb1qpf99b6jSCRLYkVpY,16246
|
|
151
|
+
emdash_core/planning/context_builder.py,sha256=o8oF3H6LS4su6UZfOIfF0f0Va-I9SqMQbW7mWzwBI4M,9633
|
|
152
|
+
emdash_core/planning/feature_context.py,sha256=mgF9wkAY7DXX1L7s-KaAH_-SzJdZYc-YN1iSGcNzJ7Y,8876
|
|
153
|
+
emdash_core/planning/feature_expander.py,sha256=ADNv3qsbRqPtXKRVDSZIf4lcaf_hxdGcbR3aAOKybv0,24464
|
|
154
|
+
emdash_core/planning/llm_explainer.py,sha256=jJlgO5_u5_7TCl_6F-0qoJWtpeY3FTXnR5vvHcqa0Dc,7150
|
|
155
|
+
emdash_core/planning/similarity.py,sha256=j3jiSWoTqlakHZGa-TxVJYknru7DzRaWlIOow2NG02o,18876
|
|
156
|
+
emdash_core/planning/team_focus.py,sha256=fv3rCyh_8sHk4w_yjzuw36KlKPAJLPZPgVOo762aneU,32405
|
|
157
|
+
emdash_core/server.py,sha256=HEOEffYTnScGEaBfO-sg6YGl5TorxHyt-_r0Krt_mRY,3763
|
|
158
|
+
emdash_core/sse/__init__.py,sha256=q6nfbsqvEX7uYTuLwRMb4E73hW-o_Cuv63APod_Kluw,129
|
|
159
|
+
emdash_core/sse/stream.py,sha256=WNBiNpiA-uM8KAuUGLz5fjWdurQsGwv2fcDoxvOTVJw,5217
|
|
160
|
+
emdash_core/swarm/__init__.py,sha256=EyL9U64ByQCCcL19ntwu2OU7labME3i3dSpSF25X6Mo,448
|
|
161
|
+
emdash_core/swarm/merge_agent.py,sha256=Fp0rqdHsd0m0swoAApq46QuBNDw5ejDk4dRddc1cD-E,13038
|
|
162
|
+
emdash_core/swarm/session_manager.py,sha256=RyLGpfXw-qFXJuQBP3Acw4w7LC_ZIhlPaDDkqjm-ycU,8999
|
|
163
|
+
emdash_core/swarm/swarm_runner.py,sha256=em-omxFHp1OBQyuucN6OqnMEy4NVdispo059M_QAbBQ,6747
|
|
164
|
+
emdash_core/swarm/task_definition.py,sha256=tplZCA9esV8RQELE45LKsGuasxXxc2Ina9tRFqxtgqU,4364
|
|
165
|
+
emdash_core/swarm/worker_spawner.py,sha256=jTZo1CqAumef6wbX8evIacUS5prtr_otWzYa6Uo2N3k,10461
|
|
166
|
+
emdash_core/swarm/worktree_manager.py,sha256=C5pk5g8dfi1luw6aecR8lu83CNVT3qdL_wEUMOGagns,8415
|
|
167
|
+
emdash_core/templates/__init__.py,sha256=rVF1ZlAiFfFTzJKfANFHbifC7c2HoFTvDVxAuOoHur0,256
|
|
168
|
+
emdash_core/templates/defaults/agent-builder.md.template,sha256=LLbd0IFEBT5Gw1LToDXoyT-EC4RHcGrENdterrPN3xk,2187
|
|
169
|
+
emdash_core/templates/defaults/focus.md.template,sha256=wj9AIwbUaZ7ANZO1zx_ZUlZ7kg_NxqGwmmJSGLefWwg,3366
|
|
170
|
+
emdash_core/templates/defaults/pr-review-enhanced.md.template,sha256=vY-M9_m2SMhX0xjoXy6cagPNZa8mmA9UGzo9bEOXhaA,11798
|
|
171
|
+
emdash_core/templates/defaults/pr-review.md.template,sha256=OoOrqMj8oPDdOX_x3SQkGk85LTR6S7e083M9kljv6aA,3088
|
|
172
|
+
emdash_core/templates/defaults/project.md.template,sha256=sR447KFQlrz8W5FkzLnkb6Ra8ihJNLv3gqc8z1RSnnY,2911
|
|
173
|
+
emdash_core/templates/defaults/research_critic.md.template,sha256=jDy5aax2kQPFmiBo9ejssGqty4JCtWCLeVL7NQPhIKg,3397
|
|
174
|
+
emdash_core/templates/defaults/research_planner.md.template,sha256=028mq7dbFAEDMyNUiexQ6634_4J3ZVaojQDXxMUADac,2717
|
|
175
|
+
emdash_core/templates/defaults/research_synthesizer.md.template,sha256=as9aSxRK52OrYfCkzw-RMd_DUEcLdbcWJyjD6pGi6O8,3386
|
|
176
|
+
emdash_core/templates/defaults/reviewer.md.template,sha256=_RbULDB78fEuPA3DBbQfAY_P46RUX-C_4r1oVsxhpTE,2545
|
|
177
|
+
emdash_core/templates/defaults/spec.md.template,sha256=0ftXTYyhftoTZsGkUXP5HgUOXeVmsVcG_VnjBAVjExU,1139
|
|
178
|
+
emdash_core/templates/defaults/tasks.md.template,sha256=LMZ6PRek0_0s3o-i8zRP-hwipgp_8F2qNgwnLAI3v5w,2093
|
|
179
|
+
emdash_core/templates/loader.py,sha256=G_6ITQqWSMYcgA_fgjKQsd_3BBNt-LuhQE8VyC2ouj0,9796
|
|
180
|
+
emdash_core/utils/__init__.py,sha256=tQj81F7ZW61jsNg_R2bA9tDLdk0dc5kQswYWwZSqigU,956
|
|
181
|
+
emdash_core/utils/git.py,sha256=j5kppemwAOWe4Bc5a9qUmYYfKqxyi9WLk5U9HgwkgO4,2336
|
|
182
|
+
emdash_core/utils/image.py,sha256=K8uKDuhZqsJXwNDQ57Q3w2j0PQPyid_aEbiq66zy3p0,14607
|
|
183
|
+
emdash_core/utils/logger.py,sha256=iLaMA5vkUvxCfWsvZ7WZSDQWv4Gh5gJHeYbAB6urDio,1473
|
|
184
|
+
emdash_core-0.1.7.dist-info/METADATA,sha256=7v6Mw8RNSpX_tcZ_iSPJEDSj7y7K16KtIUDisJ8iZBc,1381
|
|
185
|
+
emdash_core-0.1.7.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
186
|
+
emdash_core-0.1.7.dist-info/entry_points.txt,sha256=4lEFv-LTTPVSF3IcGns017yAQPgY7Y8pHeO6QGDf0jA,55
|
|
187
|
+
emdash_core-0.1.7.dist-info/RECORD,,
|