tradingcodex 0.1.0__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.
- apps/__init__.py +1 -0
- apps/audit/__init__.py +1 -0
- apps/audit/admin.py +6 -0
- apps/audit/apps.py +8 -0
- apps/audit/migrations/0001_initial.py +35 -0
- apps/audit/migrations/__init__.py +0 -0
- apps/audit/models.py +22 -0
- apps/harness/__init__.py +1 -0
- apps/harness/admin.py +6 -0
- apps/harness/apps.py +8 -0
- apps/harness/migrations/0001_initial.py +35 -0
- apps/harness/migrations/__init__.py +0 -0
- apps/harness/models.py +22 -0
- apps/harness/templatetags/__init__.py +1 -0
- apps/integrations/__init__.py +1 -0
- apps/integrations/admin.py +6 -0
- apps/integrations/apps.py +8 -0
- apps/integrations/migrations/0001_initial.py +29 -0
- apps/integrations/migrations/__init__.py +0 -0
- apps/integrations/models.py +16 -0
- apps/integrations/services.py +31 -0
- apps/mcp/__init__.py +1 -0
- apps/mcp/admin.py +20 -0
- apps/mcp/apps.py +8 -0
- apps/mcp/migrations/0001_initial.py +168 -0
- apps/mcp/migrations/__init__.py +0 -0
- apps/mcp/models.py +154 -0
- apps/mcp/services.py +327 -0
- apps/orders/__init__.py +1 -0
- apps/orders/admin.py +6 -0
- apps/orders/apps.py +8 -0
- apps/orders/migrations/0001_initial.py +79 -0
- apps/orders/migrations/__init__.py +0 -0
- apps/orders/models.py +66 -0
- apps/orders/services.py +107 -0
- apps/policy/__init__.py +1 -0
- apps/policy/admin.py +6 -0
- apps/policy/apps.py +8 -0
- apps/policy/migrations/0001_initial.py +75 -0
- apps/policy/migrations/__init__.py +0 -0
- apps/policy/models.py +61 -0
- apps/policy/services.py +110 -0
- apps/portfolio/__init__.py +1 -0
- apps/portfolio/admin.py +6 -0
- apps/portfolio/apps.py +8 -0
- apps/portfolio/migrations/0001_initial.py +67 -0
- apps/portfolio/migrations/__init__.py +0 -0
- apps/portfolio/models.py +53 -0
- apps/research/__init__.py +1 -0
- apps/research/admin.py +1 -0
- apps/research/apps.py +8 -0
- apps/research/migrations/__init__.py +0 -0
- apps/research/models.py +1 -0
- apps/workflows/__init__.py +1 -0
- apps/workflows/admin.py +6 -0
- apps/workflows/apps.py +8 -0
- apps/workflows/migrations/0001_initial.py +51 -0
- apps/workflows/migrations/__init__.py +0 -0
- apps/workflows/models.py +44 -0
- tradingcodex-0.1.0.dist-info/METADATA +337 -0
- tradingcodex-0.1.0.dist-info/RECORD +254 -0
- tradingcodex-0.1.0.dist-info/WHEEL +5 -0
- tradingcodex-0.1.0.dist-info/entry_points.txt +2 -0
- tradingcodex-0.1.0.dist-info/licenses/LICENSE +202 -0
- tradingcodex-0.1.0.dist-info/licenses/NOTICE +24 -0
- tradingcodex-0.1.0.dist-info/top_level.txt +4 -0
- tradingcodex_cli/__init__.py +1 -0
- tradingcodex_cli/__main__.py +124 -0
- tradingcodex_cli/commands/__init__.py +2 -0
- tradingcodex_cli/commands/bootstrap.py +157 -0
- tradingcodex_cli/commands/db.py +36 -0
- tradingcodex_cli/commands/doctor.py +230 -0
- tradingcodex_cli/commands/mcp.py +186 -0
- tradingcodex_cli/commands/orders.py +89 -0
- tradingcodex_cli/commands/policy.py +21 -0
- tradingcodex_cli/commands/profile.py +110 -0
- tradingcodex_cli/commands/research.py +76 -0
- tradingcodex_cli/commands/skills.py +93 -0
- tradingcodex_cli/commands/strategies.py +67 -0
- tradingcodex_cli/commands/subagents.py +106 -0
- tradingcodex_cli/commands/utils.py +134 -0
- tradingcodex_cli/commands/workspaces.py +53 -0
- tradingcodex_cli/generator.py +234 -0
- tradingcodex_cli/mcp_stdio.py +26 -0
- tradingcodex_cli/service_autostart.py +127 -0
- tradingcodex_service/__init__.py +5 -0
- tradingcodex_service/admin.py +1 -0
- tradingcodex_service/api.py +486 -0
- tradingcodex_service/application/__init__.py +2 -0
- tradingcodex_service/application/agents.py +1470 -0
- tradingcodex_service/application/audit.py +71 -0
- tradingcodex_service/application/common.py +88 -0
- tradingcodex_service/application/components.py +299 -0
- tradingcodex_service/application/harness.py +747 -0
- tradingcodex_service/application/markdown_preview.py +179 -0
- tradingcodex_service/application/orders.py +404 -0
- tradingcodex_service/application/policy.py +150 -0
- tradingcodex_service/application/portfolio.py +166 -0
- tradingcodex_service/application/research.py +356 -0
- tradingcodex_service/application/runtime.py +321 -0
- tradingcodex_service/asgi.py +6 -0
- tradingcodex_service/mcp_http.py +59 -0
- tradingcodex_service/mcp_runtime.py +565 -0
- tradingcodex_service/settings.py +91 -0
- tradingcodex_service/templates/web/activity.html +24 -0
- tradingcodex_service/templates/web/agent_skills.html +111 -0
- tradingcodex_service/templates/web/agents.html +121 -0
- tradingcodex_service/templates/web/base.html +150 -0
- tradingcodex_service/templates/web/dashboard.html +109 -0
- tradingcodex_service/templates/web/fragments/role_inspector.html +81 -0
- tradingcodex_service/templates/web/fragments/starter_prompt.html +24 -0
- tradingcodex_service/templates/web/fragments/topology_canvas.html +85 -0
- tradingcodex_service/templates/web/harness.html +87 -0
- tradingcodex_service/templates/web/mcp_router.html +250 -0
- tradingcodex_service/templates/web/orders.html +68 -0
- tradingcodex_service/templates/web/policy.html +81 -0
- tradingcodex_service/templates/web/portfolio.html +52 -0
- tradingcodex_service/templates/web/research.html +73 -0
- tradingcodex_service/templates/web/starter_prompt.html +40 -0
- tradingcodex_service/templates/web/strategies.html +74 -0
- tradingcodex_service/urls.py +42 -0
- tradingcodex_service/version.py +1 -0
- tradingcodex_service/web.py +885 -0
- tradingcodex_service/wsgi.py +6 -0
- workspace_templates/__init__.py +1 -0
- workspace_templates/modules/audit/files/.tradingcodex/audit/README.md +5 -0
- workspace_templates/modules/audit/files/trading/audit/.gitkeep +1 -0
- workspace_templates/modules/audit/module.json +16 -0
- workspace_templates/modules/codex-base/files/.codex/config.toml +272 -0
- workspace_templates/modules/codex-base/files/.codex/hooks/tradingcodex_hook.py +173 -0
- workspace_templates/modules/codex-base/files/.codex/hooks.json +105 -0
- workspace_templates/modules/codex-base/files/.codex/prompts/base_instructions/head-manager.md +129 -0
- workspace_templates/modules/codex-base/files/.codex/rules/tradingcodex.rules +50 -0
- workspace_templates/modules/codex-base/files/.tradingcodex/capabilities.yaml +56 -0
- workspace_templates/modules/codex-base/files/.tradingcodex/cli.py +16 -0
- workspace_templates/modules/codex-base/files/.tradingcodex/config.yaml +53 -0
- workspace_templates/modules/codex-base/files/.tradingcodex/policies/policy-bindings.yaml +16 -0
- workspace_templates/modules/codex-base/files/.tradingcodex/policies/principals.yaml +17 -0
- workspace_templates/modules/codex-base/files/.tradingcodex/policies/roles.yaml +27 -0
- workspace_templates/modules/codex-base/files/AGENTS.md +56 -0
- workspace_templates/modules/codex-base/files/pyproject.toml +13 -0
- workspace_templates/modules/codex-base/files/tcx +35 -0
- workspace_templates/modules/codex-base/module.json +17 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/policies/access-policies.yaml +39 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/policies/restricted-list.yaml +6 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/approval_receipt.schema.json +14 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/audit_event.schema.json +11 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/evidence_pack.schema.json +16 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/execution_result.schema.json +12 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/fundamental_report.schema.json +15 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/news_report.schema.json +15 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/order_intent.schema.json +30 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/portfolio_review.schema.json +15 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/postmortem_report.schema.json +14 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/risk_report.schema.json +15 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/technical_report.schema.json +15 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/thesis.schema.json +15 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/valuation.schema.json +15 -0
- workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/scripts/validate-order-intent.py +15 -0
- workspace_templates/modules/enforcement-guardrails/module.json +19 -0
- workspace_templates/modules/fixed-subagents/files/.codex/agents/execution-operator.toml +71 -0
- workspace_templates/modules/fixed-subagents/files/.codex/agents/fundamental-analyst.toml +62 -0
- workspace_templates/modules/fixed-subagents/files/.codex/agents/instrument-analyst.toml +64 -0
- workspace_templates/modules/fixed-subagents/files/.codex/agents/macro-analyst.toml +64 -0
- workspace_templates/modules/fixed-subagents/files/.codex/agents/news-analyst.toml +63 -0
- workspace_templates/modules/fixed-subagents/files/.codex/agents/portfolio-manager.toml +62 -0
- workspace_templates/modules/fixed-subagents/files/.codex/agents/risk-manager.toml +65 -0
- workspace_templates/modules/fixed-subagents/files/.codex/agents/technical-analyst.toml +63 -0
- workspace_templates/modules/fixed-subagents/files/.codex/agents/valuation-analyst.toml +59 -0
- workspace_templates/modules/fixed-subagents/files/.tradingcodex/mainagent/head-manager.yaml +66 -0
- workspace_templates/modules/fixed-subagents/files/.tradingcodex/mainagent/skill-change-proposals/.gitkeep +1 -0
- workspace_templates/modules/fixed-subagents/files/.tradingcodex/mainagent/subagent-registry.yaml +56 -0
- workspace_templates/modules/fixed-subagents/module.json +23 -0
- workspace_templates/modules/guidance-guardrails/files/.tradingcodex/guidance/guardrails.md +17 -0
- workspace_templates/modules/guidance-guardrails/files/.tradingcodex/guidance/task-quality-checklist.md +37 -0
- workspace_templates/modules/guidance-guardrails/module.json +18 -0
- workspace_templates/modules/information-barriers/files/.tradingcodex/policies/information-barriers.yaml +211 -0
- workspace_templates/modules/information-barriers/files/.tradingcodex/secrets.md +9 -0
- workspace_templates/modules/information-barriers/files/trading/approvals/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/market-data/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/orders/approved/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/orders/draft/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/orders/executed/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/orders/rejected/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/portfolio/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/reports/fundamental/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/reports/instrument/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/reports/macro/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/reports/news/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/reports/policy/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/reports/portfolio/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/reports/postmortem/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/reports/risk/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/reports/technical/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/reports/valuation/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/files/trading/research/.gitkeep +1 -0
- workspace_templates/modules/information-barriers/module.json +19 -0
- workspace_templates/modules/paper-trading/files/.tradingcodex/mcp/adapters/paper-trading.py +4 -0
- workspace_templates/modules/paper-trading/module.json +16 -0
- workspace_templates/modules/postmortem/files/.tradingcodex/workflows/postmortem.yaml +12 -0
- workspace_templates/modules/postmortem/module.json +16 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/investment-workflow-map/SKILL.md +106 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/investment-workflow-map/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/manage-optional-skills/SKILL.md +101 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/manage-optional-skills/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/manage-subagents/SKILL.md +140 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/manage-subagents/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/orchestrate-workflow/SKILL.md +140 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/orchestrate-workflow/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/postmortem/SKILL.md +31 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/postmortem/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/scenario-quality-gates/SKILL.md +138 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/scenario-quality-gates/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/strategy-creator/SKILL.md +109 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/strategy-creator/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/synthesize-decision/SKILL.md +54 -0
- workspace_templates/modules/repo-skills/files/.agents/skills/synthesize-decision/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/execution-operator/execute-paper-order/SKILL.md +35 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/execution-operator/execute-paper-order/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/fundamental-analyst/fundamental-analysis/SKILL.md +46 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/fundamental-analyst/fundamental-analysis/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/instrument-analyst/instrument-analysis/SKILL.md +40 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/instrument-analyst/instrument-analysis/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/macro-analyst/macro-analysis/SKILL.md +40 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/macro-analyst/macro-analysis/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/news-analyst/news-analysis/SKILL.md +43 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/news-analyst/news-analysis/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/portfolio-manager/create-order-intent/SKILL.md +46 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/portfolio-manager/create-order-intent/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/portfolio-manager/portfolio-review/SKILL.md +44 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/portfolio-manager/portfolio-review/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/approve-order/SKILL.md +38 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/approve-order/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/policy-review/SKILL.md +43 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/policy-review/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/review-risk/SKILL.md +45 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/review-risk/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/shared/collect-evidence/SKILL.md +46 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/shared/collect-evidence/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/shared/external-data-source-gate/SKILL.md +66 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/shared/external-data-source-gate/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/technical-analyst/technical-analysis/SKILL.md +43 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/technical-analyst/technical-analysis/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/valuation-analyst/valuation-review/SKILL.md +47 -0
- workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/valuation-analyst/valuation-review/agents/openai.yaml +6 -0
- workspace_templates/modules/repo-skills/module.json +37 -0
- workspace_templates/modules/stub-execution/files/.tradingcodex/mcp/adapters/stub-execution.py +4 -0
- workspace_templates/modules/stub-execution/module.json +15 -0
- workspace_templates/modules/tradingcodex-mcp/files/.tradingcodex/mcp/adapters/live-adapter.contract.md +25 -0
- workspace_templates/modules/tradingcodex-mcp/files/.tradingcodex/mcp/enforcer/README.md +5 -0
- workspace_templates/modules/tradingcodex-mcp/files/.tradingcodex/mcp/gateway/README.md +8 -0
- workspace_templates/modules/tradingcodex-mcp/files/.tradingcodex/mcp/server.py +27 -0
- workspace_templates/modules/tradingcodex-mcp/files/.tradingcodex/mcp/smoke-call.py +18 -0
- workspace_templates/modules/tradingcodex-mcp/module.json +24 -0
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tradingcodex
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Codex-native trading harness with a Django service plane and MCP execution boundary.
|
|
5
|
+
Author: TradingCodex Authors
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Keywords: trading,django,codex,mcp,portfolio,research
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Framework :: Django
|
|
10
|
+
Classifier: Framework :: Django :: 5.2
|
|
11
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
|
+
Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
15
|
+
Requires-Python: <3.15,>=3.14
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: LICENSE
|
|
18
|
+
License-File: NOTICE
|
|
19
|
+
Requires-Dist: django<5.3,>=5.2
|
|
20
|
+
Requires-Dist: django-ninja<2,>=1.4
|
|
21
|
+
Requires-Dist: markdown-it-py<5,>=3
|
|
22
|
+
Requires-Dist: nh3<0.4,>=0.3
|
|
23
|
+
Requires-Dist: pydantic>=2
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: pytest>=8; extra == "dev"
|
|
26
|
+
Requires-Dist: PyYAML>=6; extra == "dev"
|
|
27
|
+
Dynamic: license-file
|
|
28
|
+
|
|
29
|
+
<p align="center">
|
|
30
|
+
<img src="assets/tradingcodex-banner.svg" alt="TradingCodex" width="100%">
|
|
31
|
+
</p>
|
|
32
|
+
|
|
33
|
+
<div align="center">
|
|
34
|
+
<a href="https://github.com/monarchjuno/tradingcodex/actions/workflows/ci.yml"><img alt="CI" src="https://img.shields.io/github/actions/workflow/status/monarchjuno/tradingcodex/ci.yml?branch=main&label=CI"></a>
|
|
35
|
+
<a href="https://github.com/monarchjuno/tradingcodex/releases"><img alt="Release" src="https://img.shields.io/github/v/release/monarchjuno/tradingcodex?include_prereleases&label=release"></a>
|
|
36
|
+
<a href="https://pypi.org/project/tradingcodex/"><img alt="PyPI" src="https://img.shields.io/pypi/v/tradingcodex?label=PyPI"></a>
|
|
37
|
+
<a href="LICENSE"><img alt="License" src="https://img.shields.io/badge/license-Apache--2.0-blue"></a>
|
|
38
|
+
<img alt="Python" src="https://img.shields.io/badge/python-3.14-3776AB?logo=python&logoColor=white">
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<div align="center">
|
|
42
|
+
<a href="#quick-start">Quick Start</a> |
|
|
43
|
+
<a href="#what-tradingcodex-does">Features</a> |
|
|
44
|
+
<a href="#local-web-dashboard">Web Dashboard</a> |
|
|
45
|
+
<a href="#how-a-workflow-moves">Workflow</a> |
|
|
46
|
+
<a href="#role-roster">Roles</a> |
|
|
47
|
+
<a href="#architecture">Architecture</a> |
|
|
48
|
+
<a href="#safety-boundary">Safety</a> |
|
|
49
|
+
<a href="#documentation">Documentation</a>
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
# TradingCodex: Codex-Native Trading Harness
|
|
55
|
+
|
|
56
|
+
TradingCodex is a local-first trading harness for doing investment work with
|
|
57
|
+
Codex. It gives Codex a durable operating system: role-separated agents,
|
|
58
|
+
file-native research memory, a Django service plane, a central local ledger,
|
|
59
|
+
and an MCP execution boundary that turns risky actions into explicit,
|
|
60
|
+
auditable service-layer decisions.
|
|
61
|
+
|
|
62
|
+
It is not an autonomous trading bot. Codex coordinates and explains the work;
|
|
63
|
+
Django owns durable state and policy; TradingCodex MCP is the only executable
|
|
64
|
+
agent boundary; live broker adapters are not shipped in the initial core.
|
|
65
|
+
|
|
66
|
+
## Product Concept
|
|
67
|
+
|
|
68
|
+
TradingCodex exists because serious Codex-assisted investment work should not
|
|
69
|
+
live only in a chat transcript. Research, source freshness, role handoffs,
|
|
70
|
+
portfolio context, approvals, policy decisions, execution attempts, and audit
|
|
71
|
+
records need a system of record that remains inspectable after the thread ends.
|
|
72
|
+
|
|
73
|
+
The product model is a harness:
|
|
74
|
+
|
|
75
|
+
| Plane | What it gives you |
|
|
76
|
+
| --- | --- |
|
|
77
|
+
| Codex control plane | A generated Codex workspace with one `head-manager`, nine specialist subagents, role prompts, repo skills, hooks, and project-scoped MCP config. |
|
|
78
|
+
| Workspace file plane | Human-readable research markdown, source snapshots, strategy skills, policy exports, and generated `./tcx` wrappers inside the user's Codex workspace. |
|
|
79
|
+
| Django service plane | Local durable services for policy, orders, approvals, portfolio state, audit, workflows, MCP registry, external router review, API, Admin, and product web. |
|
|
80
|
+
| MCP execution boundary | Typed tools, role allowlists, policy checks, approval checks, idempotency, adapter submission, and ledgered results for executable actions. |
|
|
81
|
+
|
|
82
|
+
Generated workspaces are Codex workbenches, not brokerage accounts. Canonical
|
|
83
|
+
execution-sensitive state lives in the central local runtime DB:
|
|
84
|
+
|
|
85
|
+
```text
|
|
86
|
+
~/.tradingcodex/state/tradingcodex.sqlite3
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
## What TradingCodex Does
|
|
90
|
+
|
|
91
|
+
TradingCodex `0.1.0` provides:
|
|
92
|
+
|
|
93
|
+
- A generated Codex workspace with fixed role topology, project-scoped MCP,
|
|
94
|
+
local wrappers, workspace manifest, generated policy/config files, and
|
|
95
|
+
`./tcx doctor` validation.
|
|
96
|
+
- An explicit workspace update path that refreshes generated files, applies
|
|
97
|
+
central DB migrations, preserves workspace identity/profile state, and
|
|
98
|
+
re-runs doctor checks.
|
|
99
|
+
- A role workflow model where `head-manager` dispatches work and specialists
|
|
100
|
+
return bounded artifacts instead of every agent redoing every part of the
|
|
101
|
+
investment question.
|
|
102
|
+
- File-native research memory: markdown artifacts, source snapshots, versioned
|
|
103
|
+
handoffs, export/search flows, and source/as-of posture that agents and
|
|
104
|
+
humans can both read.
|
|
105
|
+
- Strategy and skill management through workspace files, including
|
|
106
|
+
`strategy-*` skills and role-local optional skills without weakening core
|
|
107
|
+
role boundaries.
|
|
108
|
+
- Policy, restricted-symbol, approval, order, execution, portfolio, MCP, and
|
|
109
|
+
audit services behind a shared Django application layer.
|
|
110
|
+
- Experimental paper/stub order lifecycle support: validate intent, create
|
|
111
|
+
approval receipt, submit approved order, cancel approved order, and record
|
|
112
|
+
outcomes.
|
|
113
|
+
- A local product web surface for browsing agents, skills, research markdown,
|
|
114
|
+
external MCP router metadata, starter prompts, and operational state.
|
|
115
|
+
- Django Admin, Django Ninja API, CLI, and MCP surfaces that call the same
|
|
116
|
+
service-layer logic instead of creating parallel execution paths.
|
|
117
|
+
- A managed external MCP router gate that imports discovery metadata,
|
|
118
|
+
classifies tool risk, scopes role access, and blocks unsafe direct proxy
|
|
119
|
+
paths by default.
|
|
120
|
+
|
|
121
|
+
## Quick Start
|
|
122
|
+
|
|
123
|
+
Choose an empty target directory for the generated Codex workspace. Source
|
|
124
|
+
checkouts of this repository are for TradingCodex development; generated
|
|
125
|
+
TradingCodex workspaces are separate Codex projects.
|
|
126
|
+
|
|
127
|
+
Agents and install helpers do not invent a default workspace path. If the
|
|
128
|
+
target path is not supplied, ask the user before creating or attaching a
|
|
129
|
+
workspace.
|
|
130
|
+
|
|
131
|
+
Install TradingCodex and attach it to a user-selected workspace:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
mkdir -p /path/to/target-workspace
|
|
135
|
+
cd /path/to/target-workspace
|
|
136
|
+
curl -fsSL https://raw.githubusercontent.com/monarchjuno/tradingcodex/main/install.sh | sh -s -- .
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
Run the smoke check:
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
./tcx doctor
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
After installation, fully quit and restart Codex, then open the generated
|
|
146
|
+
workspace and start from a new thread so project MCP config is reloaded. When
|
|
147
|
+
TradingCodex MCP autostarts the local service, the dashboard is available at:
|
|
148
|
+
|
|
149
|
+
```text
|
|
150
|
+
http://127.0.0.1:48267/
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
Start an orchestrated Codex workflow from the generated workspace:
|
|
154
|
+
|
|
155
|
+
```text
|
|
156
|
+
$orchestrate-workflow analyze Apple with public equity research, valuation, portfolio, and risk review
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
For repeated workspace creation, install the CLI as a user-level tool:
|
|
160
|
+
|
|
161
|
+
```bash
|
|
162
|
+
uv python install 3.14
|
|
163
|
+
uv tool install --python 3.14 tradingcodex
|
|
164
|
+
uv tool update-shell
|
|
165
|
+
cd /path/to/target-workspace
|
|
166
|
+
tcx attach .
|
|
167
|
+
./tcx doctor
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
See [installation.md](https://github.com/monarchjuno/tradingcodex/blob/main/installation.md)
|
|
171
|
+
for GitHub-main installs, direct `uvx`, MCP/service details, and additional
|
|
172
|
+
smoke checks.
|
|
173
|
+
|
|
174
|
+
Update an existing generated workspace after a package release:
|
|
175
|
+
|
|
176
|
+
```bash
|
|
177
|
+
cd /path/to/target-workspace
|
|
178
|
+
curl -fsSL https://raw.githubusercontent.com/monarchjuno/tradingcodex/main/install.sh | sh -s -- --update .
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
## Local Web Dashboard
|
|
182
|
+
|
|
183
|
+
TradingCodex includes a local Django web surface so users do not have to inspect
|
|
184
|
+
everything through chat or CLI output. When Codex trusts a generated workspace,
|
|
185
|
+
project MCP startup also starts the local service and exposes the dashboard at:
|
|
186
|
+
|
|
187
|
+
```text
|
|
188
|
+
http://127.0.0.1:48267/
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
The dashboard is a review and control surface for the agent roster, required
|
|
192
|
+
and optional skills, strategy skills, research markdown, external MCP router
|
|
193
|
+
metadata, starter prompts, policy/order/portfolio/activity status, and local
|
|
194
|
+
workspace state. It does not spawn Codex agents, approve orders, submit
|
|
195
|
+
executions, or provide investment recommendations.
|
|
196
|
+
|
|
197
|
+
For CLI-only sessions, start it manually:
|
|
198
|
+
|
|
199
|
+
```bash
|
|
200
|
+
./tcx service runserver
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
Django Admin is available separately at `http://127.0.0.1:48267/admin/` for
|
|
204
|
+
local/staff DB inspection.
|
|
205
|
+
|
|
206
|
+
## How A Workflow Moves
|
|
207
|
+
|
|
208
|
+
TradingCodex is designed around handoffs rather than one giant answer:
|
|
209
|
+
|
|
210
|
+
1. The user asks Codex for an investment workflow.
|
|
211
|
+
2. `head-manager` classifies the request, maps the investment universe and
|
|
212
|
+
workflow lane, and dispatches bounded work to specialist roles.
|
|
213
|
+
3. Analysts create evidence-backed artifacts with source/as-of posture.
|
|
214
|
+
4. Downstream roles consume accepted upstream artifacts instead of silently
|
|
215
|
+
filling missing work outside their role.
|
|
216
|
+
5. Portfolio and risk roles review fit, sizing, limits, restricted symbols,
|
|
217
|
+
and approval readiness.
|
|
218
|
+
6. If an executable paper/stub action is requested, `risk-manager` creates the
|
|
219
|
+
approval receipt and `execution-operator` submits only through TradingCodex
|
|
220
|
+
MCP.
|
|
221
|
+
7. Policy decisions, MCP calls, approvals, execution results, and audit events
|
|
222
|
+
remain inspectable through local service surfaces.
|
|
223
|
+
|
|
224
|
+
## Role Roster
|
|
225
|
+
|
|
226
|
+
| Layer | Agent | Role summary |
|
|
227
|
+
| --- | --- | --- |
|
|
228
|
+
| Main agent | `head-manager` | Dispatches specialist roles, preserves constraints, and synthesizes completed artifacts. |
|
|
229
|
+
| Analysis subagent | `fundamental-analyst` | Reviews business quality, financial evidence, company fundamentals, and source claims. |
|
|
230
|
+
| Analysis subagent | `technical-analyst` | Reviews price action, trend structure, levels, and market behavior. |
|
|
231
|
+
| Analysis subagent | `news-analyst` | Tracks news, catalysts, events, and freshness-sensitive context. |
|
|
232
|
+
| Market-context subagent | `macro-analyst` | Covers macro, rates, FX, commodities, policy, and cross-asset context. |
|
|
233
|
+
| Market-context subagent | `instrument-analyst` | Supports ETF/index, options, crypto market structure, and instrument-level work. |
|
|
234
|
+
| Decision-review subagent | `valuation-analyst` | Reviews valuation assumptions, sensitivity, and decision-quality gaps. |
|
|
235
|
+
| Portfolio subagent | `portfolio-manager` | Reviews portfolio fit, sizing, exposure, and draft order readiness. |
|
|
236
|
+
| Risk subagent | `risk-manager` | Reviews downside, policy constraints, restricted lists, and approval readiness. |
|
|
237
|
+
| Execution subagent | `execution-operator` | Handles approved paper/stub execution through TradingCodex MCP only. |
|
|
238
|
+
|
|
239
|
+
The default generated workspace includes this one-plus-nine roster. The main
|
|
240
|
+
agent coordinates and synthesizes; specialist agents own the actual role work.
|
|
241
|
+
|
|
242
|
+
## Architecture
|
|
243
|
+
|
|
244
|
+
TradingCodex is a Python/Django modular monolith packaged as a local-first
|
|
245
|
+
tool. The important implementation rule is that every interface calls shared
|
|
246
|
+
application services:
|
|
247
|
+
|
|
248
|
+
| Surface | Role |
|
|
249
|
+
| --- | --- |
|
|
250
|
+
| Product web | Agents-first review dashboard for roles, skills, research markdown, external MCP router review, starter prompts, and local status. |
|
|
251
|
+
| Django Admin | Local/staff DB inspection for policy, orders, portfolio, MCP registry, workflows, integrations, and audit rows. |
|
|
252
|
+
| Django Ninja API | Typed local/staff REST and control endpoints. |
|
|
253
|
+
| MCP | Agent/tool boundary with typed tools, role scopes, policy checks, and audit. |
|
|
254
|
+
| CLI | Local operator commands and generated workspace wrapper behavior. |
|
|
255
|
+
|
|
256
|
+
Canonical implementation lives in:
|
|
257
|
+
|
|
258
|
+
```txt
|
|
259
|
+
tradingcodex_service/application/
|
|
260
|
+
tradingcodex_cli/commands/
|
|
261
|
+
apps/
|
|
262
|
+
workspace_templates/modules/
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
The baseline frontend uses Django templates, local static HTMX, and local
|
|
266
|
+
static Alpine. There is no Node, bundler, React, or frontend build step in the
|
|
267
|
+
core package.
|
|
268
|
+
|
|
269
|
+
## Safety Boundary
|
|
270
|
+
|
|
271
|
+
TradingCodex treats executable actions as a deterministic service-layer
|
|
272
|
+
lifecycle:
|
|
273
|
+
|
|
274
|
+
```text
|
|
275
|
+
principal -> capability -> policy -> schema -> approval/idempotency -> adapter -> audit
|
|
276
|
+
```
|
|
277
|
+
|
|
278
|
+
Important boundaries:
|
|
279
|
+
|
|
280
|
+
- Product web routes do not spawn agents, generate investment analysis, create
|
|
281
|
+
approvals, or submit executions.
|
|
282
|
+
- REST/Admin/CLI/MCP call shared Django service functions.
|
|
283
|
+
- Role MCP allowlists are narrow: `head-manager` cannot submit orders,
|
|
284
|
+
`risk-manager` owns approvals, and `execution-operator` owns execution calls.
|
|
285
|
+
- Paper/stub execution remains experimental.
|
|
286
|
+
- Live broker adapters are not shipped in the initial core.
|
|
287
|
+
- Raw broker secrets must not be stored in this repository or generated
|
|
288
|
+
workspaces.
|
|
289
|
+
|
|
290
|
+
TradingCodex is research, workflow, and execution-guardrail tooling. It is not
|
|
291
|
+
financial, investment, legal, tax, or regulatory advice, and it does not provide
|
|
292
|
+
investment recommendations or guarantee returns.
|
|
293
|
+
|
|
294
|
+
## Supported Workflow Scope
|
|
295
|
+
|
|
296
|
+
Public equity is the first deeply specified sleeve. The harness keeps explicit
|
|
297
|
+
paths for ETF/index, public crypto market, macro/rates/FX/commodities, options,
|
|
298
|
+
credit-signal, and cross-asset workflows when the required data source, role
|
|
299
|
+
workflow, and policy boundary exist.
|
|
300
|
+
|
|
301
|
+
Unsupported or weakly sourced workflows should receive conservative readiness
|
|
302
|
+
labels such as `research-only`, `screen-grade`, `not-decision-ready`, or
|
|
303
|
+
`blocked`.
|
|
304
|
+
|
|
305
|
+
## Release Status
|
|
306
|
+
|
|
307
|
+
`0.1.0` is the first stable public contract for the generated workspace, Python
|
|
308
|
+
CLI, Django service plane, product web, MCP boundary, and documentation set.
|
|
309
|
+
The package still uses an alpha development classifier because live broker
|
|
310
|
+
adapters and hosted service modes are intentionally outside the initial core.
|
|
311
|
+
|
|
312
|
+
## Documentation
|
|
313
|
+
|
|
314
|
+
- [Installation](installation.md)
|
|
315
|
+
- [Docs index](docs/README.md)
|
|
316
|
+
- [Product direction](docs/product-direction.md)
|
|
317
|
+
- [Core concepts and rules](docs/core-concepts-and-rules.md)
|
|
318
|
+
- [Harness model](docs/harness.md)
|
|
319
|
+
- [Roles, skills, and workflows](docs/roles-skills-and-workflows.md)
|
|
320
|
+
- [Safety policy and execution](docs/safety-policy-and-execution.md)
|
|
321
|
+
- [Interfaces and surfaces](docs/interfaces-and-surfaces.md)
|
|
322
|
+
- [Deployment](docs/deployment.md)
|
|
323
|
+
|
|
324
|
+
## Contributing
|
|
325
|
+
|
|
326
|
+
Contributions use Apache-2.0 with DCO sign-off. See
|
|
327
|
+
[CONTRIBUTING.md](CONTRIBUTING.md).
|
|
328
|
+
|
|
329
|
+
## License
|
|
330
|
+
|
|
331
|
+
TradingCodex is an Apache-2.0 open-core project.
|
|
332
|
+
|
|
333
|
+
Source code, generated workspace templates, and project documentation are
|
|
334
|
+
licensed under the Apache License, Version 2.0 unless marked otherwise. The
|
|
335
|
+
TradingCodex name, future logos, and official product marks are not granted by
|
|
336
|
+
the code license. See [LICENSE](LICENSE), [NOTICE](NOTICE), and
|
|
337
|
+
[TRADEMARKS.md](TRADEMARKS.md).
|
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
apps/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
2
|
+
apps/audit/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
apps/audit/admin.py,sha256=JsTh_r595WwH9zWRF4Ov9MxBdAeTd8kxQD3fEn0ItdE,109
|
|
4
|
+
apps/audit/apps.py,sha256=9LWeu7mtDf2OFoRSRL1U9kKrhYRKO-AxNdc3Xd0kR7k,201
|
|
5
|
+
apps/audit/models.py,sha256=l9dZTAvoYwwJeu4j6_nI9CBdoDAP-PRb3z8I5lCjL-E,919
|
|
6
|
+
apps/audit/migrations/0001_initial.py,sha256=YwKbsmvOJXTg4EQZPZz1jTRhNxC0bf8ofnrZuNimCfQ,1400
|
|
7
|
+
apps/audit/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
apps/harness/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
9
|
+
apps/harness/admin.py,sha256=CksB8oeMD2vNNcIveGU88ru6H-xB6_tjIs9MLlr1wRg,123
|
|
10
|
+
apps/harness/apps.py,sha256=jgQfDarEL7TxHz6-Mr-v7soV7zs9YXta_ej189ppnG0,213
|
|
11
|
+
apps/harness/models.py,sha256=hKJcwisZ5OmDOxa87PLBGEGbrhb7Qm2CAtPG60mcMig,891
|
|
12
|
+
apps/harness/migrations/0001_initial.py,sha256=ADDbDcQhWfTCDQ2dI4QHAhSYuAAoyNZ8ctg21lWqPC0,1382
|
|
13
|
+
apps/harness/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
apps/harness/templatetags/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
15
|
+
apps/integrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
16
|
+
apps/integrations/admin.py,sha256=CSv4CNP-lxoy5DUnydPEkJypjp7ZHrWsDDEiD3bYIUE,130
|
|
17
|
+
apps/integrations/apps.py,sha256=EIck77hPUopzBvEtmjwaWHrvZlOGjZJl_AuiCFiNhBU,222
|
|
18
|
+
apps/integrations/models.py,sha256=QqnBytOzAlDBXcyk4Z8dPih56umfkuRKBNX8oRJ66v8,523
|
|
19
|
+
apps/integrations/services.py,sha256=3UysxtCAHCGXaQjCtxvdn2Cg8BwIxPf9m05e0ytzi7c,1094
|
|
20
|
+
apps/integrations/migrations/0001_initial.py,sha256=bUglU2XCGqpoMafliQyht9Tm6psK0SStd-gQ_8wZjRQ,951
|
|
21
|
+
apps/integrations/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
apps/mcp/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
23
|
+
apps/mcp/admin.py,sha256=isUiWHtrIMNA2G7o6KGEJbprOnbmt-w3sQ-tazUriXk,357
|
|
24
|
+
apps/mcp/apps.py,sha256=d42dvcSs6hVNLQtRveyggbPtr7U7-n3N20gVMvzEE8I,194
|
|
25
|
+
apps/mcp/models.py,sha256=FLD0bVjxyfftHB4-P1s7wTAkuy-XOPyGX1cvzYEbHS8,6924
|
|
26
|
+
apps/mcp/services.py,sha256=iQFUneb0UIASjszmdbojUJUgtym7FEM_Mvp-dRCGZWk,14703
|
|
27
|
+
apps/mcp/migrations/0001_initial.py,sha256=uCbB_nOZTB1icPF9GU_aKY81b0x9g9Q0S-XDXGtYSTc,9515
|
|
28
|
+
apps/mcp/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
apps/orders/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
30
|
+
apps/orders/admin.py,sha256=xMjL-0oVRJSNDdLDFnjyDVj5SrT3vDeWTkZbW52JUCU,182
|
|
31
|
+
apps/orders/apps.py,sha256=gTTrn8zq5ySiN-CP7aNzdtFYbRh3wHqBrNYUu04Py2I,212
|
|
32
|
+
apps/orders/models.py,sha256=fbcEfbSzGw35Y_EWlIVpXoLX39QIpsEkyOyJVzuuQMA,2787
|
|
33
|
+
apps/orders/services.py,sha256=J2XSeG7HDSKrheeVgY8xjQdUF9RnkevQy06_0YJ2-q4,3590
|
|
34
|
+
apps/orders/migrations/0001_initial.py,sha256=-tVtFP20AsfX2Wc7QCDkknETg2g87KfTL-XJQSsikg4,4009
|
|
35
|
+
apps/orders/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
apps/policy/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
37
|
+
apps/policy/admin.py,sha256=QLFuRCg8K3JeZtFn5vbCBHWjIBV2b41D50nXamGjIBU,202
|
|
38
|
+
apps/policy/apps.py,sha256=tPqAwsxJDDNDy2pmKu44EYwGBHeFEOhix3Xo7YfSvIQ,209
|
|
39
|
+
apps/policy/models.py,sha256=5tk63DE0n5BU2qmbIGqLV2Zv8ZLMV8uEgSOMzW4zDYU,2142
|
|
40
|
+
apps/policy/services.py,sha256=6VCtpNudBOO3vQdtYdhdyBx1zswN3VBmnRmrotSd7jY,4215
|
|
41
|
+
apps/policy/migrations/0001_initial.py,sha256=WA91zPOQ-4p-iIBbMHIvs7MQqoiy4ZJCRjy5C2Jj6o4,3254
|
|
42
|
+
apps/policy/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
+
apps/portfolio/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
44
|
+
apps/portfolio/admin.py,sha256=6Mq-2tLq_GkEhjfmKx67m-3oqJTUSa0rFqtXuIRdkB0,175
|
|
45
|
+
apps/portfolio/apps.py,sha256=ba8RnjKcLcSoqMa1waZ4638UIZWfb7j_pv0vE2TxyDc,216
|
|
46
|
+
apps/portfolio/models.py,sha256=Ixob5KLXcGERacjJ58L8tLBH8rBSBJXz5uxOrU1iFnw,2269
|
|
47
|
+
apps/portfolio/migrations/0001_initial.py,sha256=l5PpR9_DXd5Ckwj3S1OZZ-nHasTXiT-xHkIdWgk8Uuw,3337
|
|
48
|
+
apps/portfolio/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
+
apps/research/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
50
|
+
apps/research/admin.py,sha256=vWqbm-2iFt6vT4Ru7bGoYKxxu4P3W_MdRH-5Q315nnE,71
|
|
51
|
+
apps/research/apps.py,sha256=NQrad1LUyopbsXnmILH6wRLU8ESS3ASHlH-kj_h_hP8,213
|
|
52
|
+
apps/research/models.py,sha256=5qt4weTpExqWMhBWp4v1d_chnIGxneMVgWUXV4qDuAQ,80
|
|
53
|
+
apps/research/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
+
apps/workflows/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
55
|
+
apps/workflows/admin.py,sha256=tMqOOq5FeakTq-eCRABAK5bxdW6JkLcKBqrScWx_o8I,143
|
|
56
|
+
apps/workflows/apps.py,sha256=3NQtr9J-Nm1sKU9y_uicXrFgBLVSmWv8K_zHhk7bwMo,214
|
|
57
|
+
apps/workflows/models.py,sha256=5kx2ayKMutlTXhMTubgpG0g18GYezhSoAsiB7ZAiv7c,1569
|
|
58
|
+
apps/workflows/migrations/0001_initial.py,sha256=IYSix0GnYsfeSbjSYVsnxY7hWJzn0e2Gmo-Qm1Lsp3I,2356
|
|
59
|
+
apps/workflows/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
|
+
tradingcodex-0.1.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
61
|
+
tradingcodex-0.1.0.dist-info/licenses/NOTICE,sha256=hRjD3viIjB-s0bB7xWKbi_oHESahBq-gpj0bW8e0t30,1204
|
|
62
|
+
tradingcodex_cli/__init__.py,sha256=fXR6_CuIYynV4wmoflnujz6yIvrCEDUcebsHQu4RxCY,19
|
|
63
|
+
tradingcodex_cli/__main__.py,sha256=jwVScqNBZOI6RkgdfjSubRE7hVjczTT7jZExlMAULQg,4446
|
|
64
|
+
tradingcodex_cli/generator.py,sha256=soajFLfInS5qc3FLDQc7XpxMe1vavdBaMhwi0B1xAUk,9156
|
|
65
|
+
tradingcodex_cli/mcp_stdio.py,sha256=uiWFzTWHJZ_ySexrgKaRfyxG3FqXQinuh8seg_nGbic,724
|
|
66
|
+
tradingcodex_cli/service_autostart.py,sha256=Nq5c2VSKZyFNCRzU7J3KmqctDjStwnttbXsSrjJQmq0,4686
|
|
67
|
+
tradingcodex_cli/commands/__init__.py,sha256=PHh4jqD7i0aL8W8hXThczKcT4xsNZiXanBxOH5IOW5I,36
|
|
68
|
+
tradingcodex_cli/commands/bootstrap.py,sha256=NdwQGWE0mCvF32R3-GCz4-wo2Zj0OstgOkNdWhP4wmQ,7204
|
|
69
|
+
tradingcodex_cli/commands/db.py,sha256=iRpGBzK4yfRWHLv_W6fPpY4zxtb4iLvssJ7paYrwoy8,1278
|
|
70
|
+
tradingcodex_cli/commands/doctor.py,sha256=6ixRePdjN54TAVZhsYuCnsK0d0sBRS_ZNjw1a2NX-iw,13383
|
|
71
|
+
tradingcodex_cli/commands/mcp.py,sha256=6qxioF37Pk7CvE8O12kElrPMPAMfbEEBHoiypRkeB6E,7806
|
|
72
|
+
tradingcodex_cli/commands/orders.py,sha256=2GmCVRonqMxqjLaPMtztwtrNF1x9xSGYLfOi4nAs0T0,5143
|
|
73
|
+
tradingcodex_cli/commands/policy.py,sha256=JoNaUGv0Itd9PZECE4Mlnl4PoTGzqEuNKLZa7KaZVzQ,884
|
|
74
|
+
tradingcodex_cli/commands/profile.py,sha256=kKKp_LttooYrGVCQaJSZQli5Jjy34IStBnoVb2Ht6rU,4005
|
|
75
|
+
tradingcodex_cli/commands/research.py,sha256=KcGdnr5otHn_G0Il_647zEWpVRsQweL-QK94LLY83FA,3756
|
|
76
|
+
tradingcodex_cli/commands/skills.py,sha256=1WIdPW8G-4m17ynGUeHV_1LLYreQNWZhli-XcraEnBw,4339
|
|
77
|
+
tradingcodex_cli/commands/strategies.py,sha256=l-3XOkzgQM8J86kKY_liFUcLDnEtb4yu2AtSry402YA,2612
|
|
78
|
+
tradingcodex_cli/commands/subagents.py,sha256=BXorTUSILE6ZdxXKxOjb_bcV1UnOH4dvo0HxYg5w-y0,4257
|
|
79
|
+
tradingcodex_cli/commands/utils.py,sha256=hNq6Y1aVYL6jQY3Iu5Pn0YNXCYFxN5_tOTNJiAzn1Eo,5059
|
|
80
|
+
tradingcodex_cli/commands/workspaces.py,sha256=eGmxiEt6dLIV99m56iM-NDTf--qRmfaStDDgptUd3kg,1880
|
|
81
|
+
tradingcodex_service/__init__.py,sha256=cRA8Y_tMuVDVW_M5R8uAov-B0AHTq3mBqxki2UOuKTg,125
|
|
82
|
+
tradingcodex_service/admin.py,sha256=ZnbUjVDvdnv3tayNia3z_Md7Bbp-Qs8WNUlZdipgbxw,73
|
|
83
|
+
tradingcodex_service/api.py,sha256=ecQ_pZtdT6YCFV0iUSAYntTuz-4ZKtb-J3wPPrmuVHM,15858
|
|
84
|
+
tradingcodex_service/asgi.py,sha256=drwOBPGDu9mQoRakeox7hwbt9N0GDuMyK8oi3uB0L7o,180
|
|
85
|
+
tradingcodex_service/mcp_http.py,sha256=ws4F8KpZajOt_Iq5cAZa_8iz7skd8OK9lxCHMgQx-FU,2220
|
|
86
|
+
tradingcodex_service/mcp_runtime.py,sha256=eYgfY9IiYVqKPye-tVMS1IdOWBJE4HDzEgeDeEWQl0Y,24523
|
|
87
|
+
tradingcodex_service/settings.py,sha256=vv8wfQ9MbR6VXbUfxV14IJf2vMyqO8mNKZ_ak2u7zxE,2925
|
|
88
|
+
tradingcodex_service/urls.py,sha256=N7-wosyl_7HZ5iZ9K2jo9YAeh8COs_EtHIJn16r-_Dw,2973
|
|
89
|
+
tradingcodex_service/version.py,sha256=8UQL52qmlFTl3AhPTJHvTNceKUhp7LKGcXmP81sqq5c,31
|
|
90
|
+
tradingcodex_service/web.py,sha256=yCNsRlgxanzRq0PKWkZrKjwQ0N-GkSmr8nHmhP-O8JA,35232
|
|
91
|
+
tradingcodex_service/wsgi.py,sha256=A_yipQ4HL1HiyQx9-ckF5mkRDb65Hsr4ycz0jHbX_2o,180
|
|
92
|
+
tradingcodex_service/application/__init__.py,sha256=PHh4jqD7i0aL8W8hXThczKcT4xsNZiXanBxOH5IOW5I,36
|
|
93
|
+
tradingcodex_service/application/agents.py,sha256=q0U8el5EfvmoX7mOjc51rW1sScXamkJvFjivatZomm8,61725
|
|
94
|
+
tradingcodex_service/application/audit.py,sha256=FuQMCdOx5YoOWFAUlpUtdJpco0EOXxO93rX525ZKJis,3098
|
|
95
|
+
tradingcodex_service/application/common.py,sha256=kI5M7BAKQeNIrxWe6EpmD_ZBB7YrbGVIIRh0Acn_YRE,2593
|
|
96
|
+
tradingcodex_service/application/components.py,sha256=fcPsr4Pv2Ohdm0QeROFYChiPfr1JOQ7fUI5pFz6e2Rc,12916
|
|
97
|
+
tradingcodex_service/application/harness.py,sha256=AQv3o9ZgGbjmow-bnaeKbfZdczZS_DoxhDhCNWhNYzM,39103
|
|
98
|
+
tradingcodex_service/application/markdown_preview.py,sha256=eeNBbAX3eIzEYf5adLNGehNTwwyUD6NYC-DaFHktfxI,4973
|
|
99
|
+
tradingcodex_service/application/orders.py,sha256=Cw3pX6b4YpI0hMOQeU75nO1eRRJkn9K7lkHAcFDxYO8,19412
|
|
100
|
+
tradingcodex_service/application/policy.py,sha256=WYKt9-EDeXzb7qomiU2m5a02nDhYOGtgW57PzE4CJn4,7081
|
|
101
|
+
tradingcodex_service/application/portfolio.py,sha256=zZsWFMjoyhvofKsQyZ4PW1kIo0d8a7_tJgFHNbbe9zM,6728
|
|
102
|
+
tradingcodex_service/application/research.py,sha256=x-hWRrJvX-ufnH2TwIzOq8_pMJoKDOVjKgf-pygfnlk,16386
|
|
103
|
+
tradingcodex_service/application/runtime.py,sha256=Z6Z5WglG54U_ez022AF_QzIFpA57ZOTIfgt-9PrLBFM,12464
|
|
104
|
+
tradingcodex_service/templates/web/activity.html,sha256=7DOJjiGHjazHZiX_8sQFiJwCJNQICeydnGC2WQ_fGw0,795
|
|
105
|
+
tradingcodex_service/templates/web/agent_skills.html,sha256=ffmpRob4I5s6UJpQAMc-tvS2tlBXU_JlYoOkpmo9IIE,4583
|
|
106
|
+
tradingcodex_service/templates/web/agents.html,sha256=rlJMaf-hCjffGTBwIZPhgdIx1uWmT5lSyU1czVhUF1M,4814
|
|
107
|
+
tradingcodex_service/templates/web/base.html,sha256=w7uC-v2RbRWymjwAZXMayhLxguKIeqQoj1xMj0Fc48Q,6508
|
|
108
|
+
tradingcodex_service/templates/web/dashboard.html,sha256=Qb-P14NsCFUmvh5QvCRwDYipS2KbdL8yFKBTYIe4XiA,3630
|
|
109
|
+
tradingcodex_service/templates/web/harness.html,sha256=MMK832VohqlB9TugIAatRd-qTErM-hMMaHU2C49pBXA,2714
|
|
110
|
+
tradingcodex_service/templates/web/mcp_router.html,sha256=3VVIzB5YnB8aLF6cXXbM3z2R_fVITUyQKMiNjeXT7_c,11359
|
|
111
|
+
tradingcodex_service/templates/web/orders.html,sha256=RRWlLO8OSsoiCk3-l5ltIfPhehnnE4pw0B-A1u10XNQ,2449
|
|
112
|
+
tradingcodex_service/templates/web/policy.html,sha256=L8IcHsRoQubuDv07YqYVmCQpq6DIuV0gJdl-XkEHlzA,2495
|
|
113
|
+
tradingcodex_service/templates/web/portfolio.html,sha256=nzpkEi9SoBQndg7T98xHVIp_Lj1AH_aCA7ctHXdhEM8,1488
|
|
114
|
+
tradingcodex_service/templates/web/research.html,sha256=qLT1zNwkTMFb_xrMHcS9fsXN0lc6Ww0Zc4QBNW9iqug,2580
|
|
115
|
+
tradingcodex_service/templates/web/starter_prompt.html,sha256=LXoGxBS26e_pzSOGqiFsZBQhhbPobAkqBGUMSRqNR9M,1367
|
|
116
|
+
tradingcodex_service/templates/web/strategies.html,sha256=Td41NI-va7l-7unYxOZYbFA_4HvzBMDaRodCgigPvko,2261
|
|
117
|
+
tradingcodex_service/templates/web/fragments/role_inspector.html,sha256=bSv9-DVl5Ei4lah0ZepKYxeORatBjgZGtWF476kOAMg,2604
|
|
118
|
+
tradingcodex_service/templates/web/fragments/starter_prompt.html,sha256=btA6g3qJN4ak4jbQnMcqJzi4Ryb1lLusLNIvL1As_9g,703
|
|
119
|
+
tradingcodex_service/templates/web/fragments/topology_canvas.html,sha256=nu859lnfBhEaum8tWQdiGcTLFohyY7EbkbQLdU_s1Jg,3254
|
|
120
|
+
workspace_templates/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
121
|
+
workspace_templates/modules/audit/module.json,sha256=Xdd0Wbbt76w0tvQwBFa3D5VQP7KB2oWDFrMd1lI2uGE,266
|
|
122
|
+
workspace_templates/modules/audit/files/.tradingcodex/audit/README.md,sha256=dwZ3WzZBAILgaQbZruqXlPQ3S0sqIfQ78w9wKMeBelY,176
|
|
123
|
+
workspace_templates/modules/audit/files/trading/audit/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
124
|
+
workspace_templates/modules/codex-base/module.json,sha256=XNTQ8cFx-oEO2GWQ4wzDmWOJiWP41lkdqFicD-VMoSM,369
|
|
125
|
+
workspace_templates/modules/codex-base/files/AGENTS.md,sha256=i451Z4AXIgDGWV3HT4ZxXKRCLJQTt2NcM750UCEzmLg,8939
|
|
126
|
+
workspace_templates/modules/codex-base/files/pyproject.toml,sha256=cFCKUJQq7saLLEQ1RH2MZRtT1wyIFZX8qfYbHq2m9lg,262
|
|
127
|
+
workspace_templates/modules/codex-base/files/tcx,sha256=-eS00e8HGmw2pBSoIEtDfLAs3s1M37vHRetBGazhhCo,1422
|
|
128
|
+
workspace_templates/modules/codex-base/files/.codex/config.toml,sha256=mhCeop1P37Ba8y8BHQnetTPETMrgAIMoyx3u4FkZ1jI,10942
|
|
129
|
+
workspace_templates/modules/codex-base/files/.codex/hooks.json,sha256=jJ3-PLQbyhTQxcUPjo4hbMrR6uox_8kWdwYgBSxr630,3243
|
|
130
|
+
workspace_templates/modules/codex-base/files/.codex/hooks/tradingcodex_hook.py,sha256=y_PRsz7KkGjD3junQkp18txJxdMZBfG5kf2IEyPzDEg,6761
|
|
131
|
+
workspace_templates/modules/codex-base/files/.codex/prompts/base_instructions/head-manager.md,sha256=Qk6hUpNssmSjuodZAlmPcyO4Ymyzn5t6qQZIR_Z1bfU,11347
|
|
132
|
+
workspace_templates/modules/codex-base/files/.codex/rules/tradingcodex.rules,sha256=YjfQDjQAq24pkgqWrnr8arYaDUzzTGVHNK-qwDpj2pM,1477
|
|
133
|
+
workspace_templates/modules/codex-base/files/.tradingcodex/capabilities.yaml,sha256=CM_hisYgNqSUmmcXq68PmhxVM-b4H3UJcbnb5B6zmuE,1278
|
|
134
|
+
workspace_templates/modules/codex-base/files/.tradingcodex/cli.py,sha256=dmBsrB1bN6FzauXFP4CrzIlQoS0YJcs2d58UYy2je_w,383
|
|
135
|
+
workspace_templates/modules/codex-base/files/.tradingcodex/config.yaml,sha256=vSg-W1wo0NH1aUzDesNvWDAu3huX3eDtnGLo_9vEwZU,1626
|
|
136
|
+
workspace_templates/modules/codex-base/files/.tradingcodex/policies/policy-bindings.yaml,sha256=M0tFtHqGynUSEh4Wr7p4SvkR9Z0BWt8UjQhhrnCTVxQ,298
|
|
137
|
+
workspace_templates/modules/codex-base/files/.tradingcodex/policies/principals.yaml,sha256=jb0CHcWJ9byokarbV70CcOIdggvw6afS04oA9g2aNt8,361
|
|
138
|
+
workspace_templates/modules/codex-base/files/.tradingcodex/policies/roles.yaml,sha256=KMqrkK3bZEjLnkq0pM7trTM_tp8cx4_PWJBEymmYXFM,595
|
|
139
|
+
workspace_templates/modules/enforcement-guardrails/module.json,sha256=u33NQl_Bmoq2VQhy_IG1AVsDQ7EamrNv51fS3fRTOVE,414
|
|
140
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/policies/access-policies.yaml,sha256=cbhXFSFS8fggUysdEPAWLuo2xmxJg2Ge-to7D0E-SjA,880
|
|
141
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/policies/restricted-list.yaml,sha256=2EzUyaJsYzpQb303G7uitPEh-DTfRN-8NXzzxKjkObo,207
|
|
142
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/approval_receipt.schema.json,sha256=lTlKbna7fsOxoiHxP9T-4TDwL82U5Yruuf47cQ5lVYk,455
|
|
143
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/audit_event.schema.json,sha256=r6j6-vObCiTKsyRjNeZ5ZATeijRf5_UAz59kvKZJchs,275
|
|
144
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/evidence_pack.schema.json,sha256=UdSm_i9AB9djM6G1apvyNqZVM1wV-pYvr4ISXpvwpHc,510
|
|
145
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/execution_result.schema.json,sha256=NRzRFRjpvMQ7mGbCYosP1AI-4ZlMYRXGcQD--PZ1L0k,367
|
|
146
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/fundamental_report.schema.json,sha256=aKa4lGH2lZQBxHnuMfH8heCd5jlCfM4zdJ2kLjB07M8,501
|
|
147
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/news_report.schema.json,sha256=HJKcKCwiy7SXOahnppI5ExGOP5ls1NWathmNkXLJX4Y,477
|
|
148
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/order_intent.schema.json,sha256=55pFYAnpT0-Lu-P4CJxejDQeCqRKQnf9PeyuSUSq3xE,854
|
|
149
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/portfolio_review.schema.json,sha256=rygyXiA5MOXgwrNRJY7g4N18QByx7bl6t9T7TCfbvto,492
|
|
150
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/postmortem_report.schema.json,sha256=-0YDJI4QFWUOBZ1cBeYFx-hv5n_4rz-SROJOVAiSahc,442
|
|
151
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/risk_report.schema.json,sha256=PNd0SHH5r15EfNmhhSt-x5naetUXbsBqG3iMjsQtfGU,493
|
|
152
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/technical_report.schema.json,sha256=StcUiwxrlEKosibyUDfVauqYMW-HzDloxLv-vFlWSds,476
|
|
153
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/thesis.schema.json,sha256=Rrq3vRbTUMuFG5fe-O5q1CnUzUG9jBfh2eA27xoY8RU,491
|
|
154
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/schemas/valuation.schema.json,sha256=NXZezNN-NCPCQHIf_MSlqgCKM4ayHPHV57nCJiwo0M0,480
|
|
155
|
+
workspace_templates/modules/enforcement-guardrails/files/.tradingcodex/scripts/validate-order-intent.py,sha256=N4Pp8OkKXMXSdie5DaYx0TM3qAeNXzyAmUbr5RkQbpo,339
|
|
156
|
+
workspace_templates/modules/fixed-subagents/module.json,sha256=lO6y3p2PWt9_DuI33ZFBDo02sI4DXDRyHuxspJpVbpk,546
|
|
157
|
+
workspace_templates/modules/fixed-subagents/files/.codex/agents/execution-operator.toml,sha256=GPesHonpPS7zHHjua5ef-b6mhS-Dlnp4K9HCvtkCxYA,3573
|
|
158
|
+
workspace_templates/modules/fixed-subagents/files/.codex/agents/fundamental-analyst.toml,sha256=aIeAtHUOtdNIP9Boodecvr7v-HE8ZY-U6nYp4u9fwPw,4193
|
|
159
|
+
workspace_templates/modules/fixed-subagents/files/.codex/agents/instrument-analyst.toml,sha256=zsOoMhqDcy2sfp4XLxtj9wI4pcZsmlvfeVvvqbtyW_w,4608
|
|
160
|
+
workspace_templates/modules/fixed-subagents/files/.codex/agents/macro-analyst.toml,sha256=ApD9aQQi3KhW3ivC_9b1iJuif-ARJ-bEuI2HCDT6aao,4329
|
|
161
|
+
workspace_templates/modules/fixed-subagents/files/.codex/agents/news-analyst.toml,sha256=kzQa4GKeYKDmesYd40Mz5eRwWvRAaPub0N89v5LUUw0,4120
|
|
162
|
+
workspace_templates/modules/fixed-subagents/files/.codex/agents/portfolio-manager.toml,sha256=cPr-WOyz9aM11m39-hTxjFa-N2v-oYR65KzosmhCFOY,4114
|
|
163
|
+
workspace_templates/modules/fixed-subagents/files/.codex/agents/risk-manager.toml,sha256=4WDuUGPArY5YhVrJ08uqXSUQBDQQAnCeaHSTr6Zvst4,4530
|
|
164
|
+
workspace_templates/modules/fixed-subagents/files/.codex/agents/technical-analyst.toml,sha256=FaQBni_2vVwTEwlKJ3odZszbFe9u6NVmrJoNLPx1Og8,4142
|
|
165
|
+
workspace_templates/modules/fixed-subagents/files/.codex/agents/valuation-analyst.toml,sha256=x_F_uOomKKvcRjoNAvjKpUqrpaA_00JpAGFA8h-eRos,3974
|
|
166
|
+
workspace_templates/modules/fixed-subagents/files/.tradingcodex/mainagent/head-manager.yaml,sha256=8m01fRI1EOAMnh-3qpYgStcGEKrlwHYu-NO8LNCWiFc,1947
|
|
167
|
+
workspace_templates/modules/fixed-subagents/files/.tradingcodex/mainagent/subagent-registry.yaml,sha256=JwoSZf0qiZcjnX5RfpuCCySjLlv50qTc71a0MbBlA_0,1380
|
|
168
|
+
workspace_templates/modules/fixed-subagents/files/.tradingcodex/mainagent/skill-change-proposals/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
169
|
+
workspace_templates/modules/guidance-guardrails/module.json,sha256=hcgTF-ZXbJOT5cSsfMsxwaOyRf2nyyapXcvD3nWHnTI,376
|
|
170
|
+
workspace_templates/modules/guidance-guardrails/files/.tradingcodex/guidance/guardrails.md,sha256=-Nj5kGj1eiCL8hh5TCH7p13R45emZETSTvXjnVtJO6g,533
|
|
171
|
+
workspace_templates/modules/guidance-guardrails/files/.tradingcodex/guidance/task-quality-checklist.md,sha256=GoygbTHHHptnegD3zJZF7b_GdVHwBpwxcy7DwgVWD_A,2767
|
|
172
|
+
workspace_templates/modules/information-barriers/module.json,sha256=dN0hdyZ5r86fMUuPWjj_bjGeAR4-5uITngcJmWKgNC8,468
|
|
173
|
+
workspace_templates/modules/information-barriers/files/.tradingcodex/secrets.md,sha256=3CkBbmUJQG7NQbmqrqnIL1LQ0T4htVdfHolwDDUN6CU,354
|
|
174
|
+
workspace_templates/modules/information-barriers/files/.tradingcodex/policies/information-barriers.yaml,sha256=h0sZtXy1rdO_IMXu3LMA8B3ODNPG_i02-EEQvDGTRSw,5656
|
|
175
|
+
workspace_templates/modules/information-barriers/files/trading/approvals/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
176
|
+
workspace_templates/modules/information-barriers/files/trading/market-data/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
177
|
+
workspace_templates/modules/information-barriers/files/trading/orders/approved/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
178
|
+
workspace_templates/modules/information-barriers/files/trading/orders/draft/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
179
|
+
workspace_templates/modules/information-barriers/files/trading/orders/executed/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
180
|
+
workspace_templates/modules/information-barriers/files/trading/orders/rejected/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
181
|
+
workspace_templates/modules/information-barriers/files/trading/portfolio/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
182
|
+
workspace_templates/modules/information-barriers/files/trading/reports/fundamental/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
183
|
+
workspace_templates/modules/information-barriers/files/trading/reports/instrument/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
184
|
+
workspace_templates/modules/information-barriers/files/trading/reports/macro/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
185
|
+
workspace_templates/modules/information-barriers/files/trading/reports/news/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
186
|
+
workspace_templates/modules/information-barriers/files/trading/reports/policy/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
187
|
+
workspace_templates/modules/information-barriers/files/trading/reports/portfolio/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
188
|
+
workspace_templates/modules/information-barriers/files/trading/reports/postmortem/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
189
|
+
workspace_templates/modules/information-barriers/files/trading/reports/risk/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
190
|
+
workspace_templates/modules/information-barriers/files/trading/reports/technical/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
191
|
+
workspace_templates/modules/information-barriers/files/trading/reports/valuation/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
192
|
+
workspace_templates/modules/information-barriers/files/trading/research/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
193
|
+
workspace_templates/modules/paper-trading/module.json,sha256=6JoWP2rsGmIxz89a_wrrqGyCiCtpWEelJ4dfUIM6dFM,327
|
|
194
|
+
workspace_templates/modules/paper-trading/files/.tradingcodex/mcp/adapters/paper-trading.py,sha256=AD7sLkCeDwO8uh199hnnI_GX6s11oj3NWpCDUk6Qmck,112
|
|
195
|
+
workspace_templates/modules/postmortem/module.json,sha256=hCw3WKqflAKOJLZqyoWbG1kcFjgZxFPzikvIonNAQuc,282
|
|
196
|
+
workspace_templates/modules/postmortem/files/.tradingcodex/workflows/postmortem.yaml,sha256=NuN5NTpqAhAQkK5RxMPdIN1mjJkk7elEVJAtb92of08,256
|
|
197
|
+
workspace_templates/modules/repo-skills/module.json,sha256=wrEgcaXTmnfYhgvfQlyKSWJn09IcK40J9pwmXw6Wa_Q,999
|
|
198
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/investment-workflow-map/SKILL.md,sha256=MkBPB0bnBs7W2_tZc5tR9Y7O8Sb3OVHz4t5COfiLv6k,10841
|
|
199
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/investment-workflow-map/agents/openai.yaml,sha256=jrVzELzxSCPQd7X9HPdsDgNFIg_DobVqHXnyudSno90,282
|
|
200
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/manage-optional-skills/SKILL.md,sha256=kdtidnvfv_oh-BBB969LqzXYIRZVocVSqXFNsCN4Q7M,4436
|
|
201
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/manage-optional-skills/agents/openai.yaml,sha256=1b5tuAy42LCS-MDQF-XiKylQoVfrInpzrA8TwGxa17E,271
|
|
202
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/manage-subagents/SKILL.md,sha256=vJ0BRTquTk8W4d3anpg2LddZAcBDJFIVZJL7Jkg-p7k,13976
|
|
203
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/manage-subagents/agents/openai.yaml,sha256=U_J3QjhFpxFn5OA64PLoBv68F2HuLXnHgwkZgRTH304,256
|
|
204
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/orchestrate-workflow/SKILL.md,sha256=oau5xEQIHc8YrXJL8PRo1j16JtCa87InOGwZHXT5sbo,10505
|
|
205
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/orchestrate-workflow/agents/openai.yaml,sha256=XQ6M6HKdncyI-Jw1Q3ZI4C3Cxa4qzNwmiszDv3h5n98,283
|
|
206
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/postmortem/SKILL.md,sha256=88ce8l5fuBIYKALtWk7AH9bOYp8rfoR3g420cWmEwOU,1672
|
|
207
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/postmortem/agents/openai.yaml,sha256=PB_YdHzbEJp9KNKv3MKQHDYfSL7aixXCRXHh2ZcB5jw,233
|
|
208
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/scenario-quality-gates/SKILL.md,sha256=BU2UEw2_Bo6GgKxTWfOsmX5e3-ExWxTn2WyY5Bg3xtM,14641
|
|
209
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/scenario-quality-gates/agents/openai.yaml,sha256=VnPsfGg6zbA8kPrcckyLeEl_qJ5oOjv-PIiEcj9kNK8,256
|
|
210
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/strategy-creator/SKILL.md,sha256=XZqhKT21vbvZf2Xp5k-VQ-2OiBYtFHyz0XC2XATuZUM,4080
|
|
211
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/strategy-creator/agents/openai.yaml,sha256=1jrsXK3mQ5IxNB5BlTVlyS5U8Cn8UxWDdMSjIuOM0a8,242
|
|
212
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/synthesize-decision/SKILL.md,sha256=9efwMm6ULnm30c4IBgc_7VkdI8uLujmyNh8aK-gwsEQ,2856
|
|
213
|
+
workspace_templates/modules/repo-skills/files/.agents/skills/synthesize-decision/agents/openai.yaml,sha256=oC7K_3_C8TI5kOiIzK1GYWheFNlnwYlPOTMtsNUFgbo,289
|
|
214
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/execution-operator/execute-paper-order/SKILL.md,sha256=9JzdDkqoa4MtZfuiycxnieseuTl03H2WZ-iStOoz810,1759
|
|
215
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/execution-operator/execute-paper-order/agents/openai.yaml,sha256=4pVQsr4O48umD-e8CqGJvh9wsFsV-4KLOFsh9LhKm5U,275
|
|
216
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/fundamental-analyst/fundamental-analysis/SKILL.md,sha256=Rf2TwDI2Kn4fRzWOgwihRnARZq0NS3zSeM03_QyAE3s,2642
|
|
217
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/fundamental-analyst/fundamental-analysis/agents/openai.yaml,sha256=KOJdny-W_HyXJ4ODAIyVYmLQLbUeIYfcehNZt7zyyFk,271
|
|
218
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/instrument-analyst/instrument-analysis/SKILL.md,sha256=xlPzf3nfCq5AQVdmjJjXEncTtb4aZbvkcOWNglEAJD4,2672
|
|
219
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/instrument-analyst/instrument-analysis/agents/openai.yaml,sha256=9ukhbirwgOWlNBKvhNHUvf1j18vRkdg80yOVWJe9mQM,280
|
|
220
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/macro-analyst/macro-analysis/SKILL.md,sha256=PIkc3NVrMmPtUP9hXROFL3lmOPlLGB54BBS2NkmDlXs,2302
|
|
221
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/macro-analyst/macro-analysis/agents/openai.yaml,sha256=TUcrHmrvBdeQL6ELSCFCXZexvXOiNHD6-RVRfJKaUgU,268
|
|
222
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/news-analyst/news-analysis/SKILL.md,sha256=EG-YNY508GPj88VLtLUhIGWCdf8f7U9Z3EMfkAtNR2k,2055
|
|
223
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/news-analyst/news-analysis/agents/openai.yaml,sha256=Kd5NHMqEpxSV555Sa_dCYd8jRwvux3Bv8SQk4GlFjks,245
|
|
224
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/portfolio-manager/create-order-intent/SKILL.md,sha256=xw3L3CgtJQ8j_4pYaQfJWDTKqvlwEu-4G20Xq32LY-4,2153
|
|
225
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/portfolio-manager/create-order-intent/agents/openai.yaml,sha256=8aKu-BV39LJpRyJwUXNBh20M5IzRWpvZl1qPF9wolBM,286
|
|
226
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/portfolio-manager/portfolio-review/SKILL.md,sha256=toUBRL9N61QAzcUBSEe_sSORuFAPFMfgInJD2F2whOs,2212
|
|
227
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/portfolio-manager/portfolio-review/agents/openai.yaml,sha256=4W61-EBTfZwYSSCqW_JhhZ63l_rN8oRLMaGRrzBCVwA,271
|
|
228
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/approve-order/SKILL.md,sha256=vn4GjtP0fDIYyEuNgNdhHfySOMK8e41drSd3I1IgVK4,1656
|
|
229
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/approve-order/agents/openai.yaml,sha256=lNUcnfh26iNVZJYTKRMd6iviutFTV9i54v-Vz4Zgdxw,286
|
|
230
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/policy-review/SKILL.md,sha256=YDw46JL1QX-GoPmBAcSNhrR1fKSSwR7FCYf2yyF0184,2085
|
|
231
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/policy-review/agents/openai.yaml,sha256=saZWbAtunqlZdWY1aEY9iouPdTMaNOQfa2ow2r2G1Gk,249
|
|
232
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/review-risk/SKILL.md,sha256=fMhyRokvDjI_1vjr80smFPI9UkbcXFPawAv4En9Q13w,2264
|
|
233
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/risk-manager/review-risk/agents/openai.yaml,sha256=7KHLLiydnm8dgpY2kR-FvSQ0Xoo2LcoX8fiMhamKx3U,235
|
|
234
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/shared/collect-evidence/SKILL.md,sha256=94_o_2g0qr6TcDUZ-Xf1LrN-xFxfDsynVorMrtdjfP0,2450
|
|
235
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/shared/collect-evidence/agents/openai.yaml,sha256=MnBvsgcy_PWjX9vquVL3rG8cWA8qX0SBYGdZNMgc8qw,275
|
|
236
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/shared/external-data-source-gate/SKILL.md,sha256=WryMTjOhalPj_yvr40l1YHfcQyq5XSBrvLq8AsTy-uQ,3894
|
|
237
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/shared/external-data-source-gate/agents/openai.yaml,sha256=aCCbkg2XjYoHfKxpc_l0TVxDuVukm1WrkMrWdPhYm5Y,277
|
|
238
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/technical-analyst/technical-analysis/SKILL.md,sha256=7TxHVKTnm2HuPnkzOeGaiZxxFk-9V1wtEsmgpsiNBis,2299
|
|
239
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/technical-analyst/technical-analysis/agents/openai.yaml,sha256=THFeBbCvv17n3Ae8ND-COQFGUlJSqytM9gTE--iw6wo,263
|
|
240
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/valuation-analyst/valuation-review/SKILL.md,sha256=E_kBGR8cl5WTrUX0WQ6PK_uFYQmNkyXYWoPhFvze8uE,2522
|
|
241
|
+
workspace_templates/modules/repo-skills/files/.tradingcodex/subagents/skills/valuation-analyst/valuation-review/agents/openai.yaml,sha256=e0gNuphspz1ASikYYJDJagR6i90xpTKr_HpxUlozG_0,241
|
|
242
|
+
workspace_templates/modules/stub-execution/module.json,sha256=_c_1uf5o6f2nEHSx1n1q9V-3CCDD8IcB2ROxicXAXcs,278
|
|
243
|
+
workspace_templates/modules/stub-execution/files/.tradingcodex/mcp/adapters/stub-execution.py,sha256=hEpzpDpZfs_eSCRscrySa7Y7CICXwQmNHZ1iUc7Ndmk,112
|
|
244
|
+
workspace_templates/modules/tradingcodex-mcp/module.json,sha256=iv6VxPEydzf8EnulYLIVPFhRl0ST2al6hn3gCB3Ub90,670
|
|
245
|
+
workspace_templates/modules/tradingcodex-mcp/files/.tradingcodex/mcp/server.py,sha256=4P0nOoR3_Ij0Xb26wTBRmmOFSQy4I9LMiMbsPeNNh9A,863
|
|
246
|
+
workspace_templates/modules/tradingcodex-mcp/files/.tradingcodex/mcp/smoke-call.py,sha256=FvizctENSOCTx7enDI9gsrLbI9wgZ0kbRZCQmRN3-3E,449
|
|
247
|
+
workspace_templates/modules/tradingcodex-mcp/files/.tradingcodex/mcp/adapters/live-adapter.contract.md,sha256=jnvycGzz0flHooQIvk12IOkQXGdQmJoOPZsTCYmZHdA,650
|
|
248
|
+
workspace_templates/modules/tradingcodex-mcp/files/.tradingcodex/mcp/enforcer/README.md,sha256=ikzmvIjHdms2O7t_-ElLW3BzJsf7lzg9V3_h2ODCuik,220
|
|
249
|
+
workspace_templates/modules/tradingcodex-mcp/files/.tradingcodex/mcp/gateway/README.md,sha256=lSrax2mf_KQDli_KbEPpKqUVYBU-dA10ySDv0In30lY,310
|
|
250
|
+
tradingcodex-0.1.0.dist-info/METADATA,sha256=AsZvFrRL0lzBwD2pbQmZfYHD_jear8GXzedzBKv1FMI,14547
|
|
251
|
+
tradingcodex-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
252
|
+
tradingcodex-0.1.0.dist-info/entry_points.txt,sha256=2b9jVscetLz5FPMtYoJstXJM_fyDuXsbO7nNWKP16MY,55
|
|
253
|
+
tradingcodex-0.1.0.dist-info/top_level.txt,sha256=3j0ScyarnFRg7z_XwLEsTvFZUhVRMGTUy9q9Xhdl-fE,63
|
|
254
|
+
tradingcodex-0.1.0.dist-info/RECORD,,
|