monoco-toolkit 0.1.0__py3-none-any.whl → 0.2.5__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.
- monoco/cli/__init__.py +0 -0
- monoco/cli/project.py +87 -0
- monoco/cli/workspace.py +46 -0
- monoco/core/agent/__init__.py +5 -0
- monoco/core/agent/action.py +144 -0
- monoco/core/agent/adapters.py +106 -0
- monoco/core/agent/protocol.py +31 -0
- monoco/core/agent/state.py +106 -0
- monoco/core/config.py +152 -17
- monoco/core/execution.py +62 -0
- monoco/core/feature.py +58 -0
- monoco/core/git.py +51 -2
- monoco/core/injection.py +196 -0
- monoco/core/integrations.py +234 -0
- monoco/core/lsp.py +61 -0
- monoco/core/output.py +13 -2
- monoco/core/registry.py +36 -0
- monoco/core/resources/en/AGENTS.md +8 -0
- monoco/core/resources/en/SKILL.md +66 -0
- monoco/core/resources/zh/AGENTS.md +8 -0
- monoco/core/resources/zh/SKILL.md +66 -0
- monoco/core/setup.py +88 -110
- monoco/core/skills.py +444 -0
- monoco/core/state.py +53 -0
- monoco/core/sync.py +224 -0
- monoco/core/telemetry.py +4 -1
- monoco/core/workspace.py +85 -20
- monoco/daemon/app.py +127 -58
- monoco/daemon/models.py +4 -0
- monoco/daemon/services.py +56 -155
- monoco/features/agent/commands.py +166 -0
- monoco/features/agent/doctor.py +30 -0
- monoco/features/config/commands.py +125 -44
- monoco/features/i18n/adapter.py +29 -0
- monoco/features/i18n/commands.py +89 -10
- monoco/features/i18n/core.py +113 -27
- monoco/features/i18n/resources/en/AGENTS.md +8 -0
- monoco/features/i18n/resources/en/SKILL.md +94 -0
- monoco/features/i18n/resources/zh/AGENTS.md +8 -0
- monoco/features/i18n/resources/zh/SKILL.md +94 -0
- monoco/features/issue/adapter.py +34 -0
- monoco/features/issue/commands.py +183 -65
- monoco/features/issue/core.py +172 -77
- monoco/features/issue/linter.py +215 -116
- monoco/features/issue/migration.py +134 -0
- monoco/features/issue/models.py +23 -19
- monoco/features/issue/monitor.py +94 -0
- monoco/features/issue/resources/en/AGENTS.md +15 -0
- monoco/features/issue/resources/en/SKILL.md +87 -0
- monoco/features/issue/resources/zh/AGENTS.md +15 -0
- monoco/features/issue/resources/zh/SKILL.md +114 -0
- monoco/features/issue/validator.py +269 -0
- monoco/features/pty/core.py +185 -0
- monoco/features/pty/router.py +138 -0
- monoco/features/pty/server.py +56 -0
- monoco/features/spike/adapter.py +30 -0
- monoco/features/spike/commands.py +45 -24
- monoco/features/spike/core.py +4 -21
- monoco/features/spike/resources/en/AGENTS.md +7 -0
- monoco/features/spike/resources/en/SKILL.md +74 -0
- monoco/features/spike/resources/zh/AGENTS.md +7 -0
- monoco/features/spike/resources/zh/SKILL.md +74 -0
- monoco/main.py +115 -2
- {monoco_toolkit-0.1.0.dist-info → monoco_toolkit-0.2.5.dist-info}/METADATA +10 -3
- monoco_toolkit-0.2.5.dist-info/RECORD +77 -0
- monoco_toolkit-0.1.0.dist-info/RECORD +0 -33
- {monoco_toolkit-0.1.0.dist-info → monoco_toolkit-0.2.5.dist-info}/WHEEL +0 -0
- {monoco_toolkit-0.1.0.dist-info → monoco_toolkit-0.2.5.dist-info}/entry_points.txt +0 -0
- {monoco_toolkit-0.1.0.dist-info → monoco_toolkit-0.2.5.dist-info}/licenses/LICENSE +0 -0
monoco/main.py
CHANGED
|
@@ -11,8 +11,45 @@ app = typer.Typer(
|
|
|
11
11
|
)
|
|
12
12
|
|
|
13
13
|
|
|
14
|
+
def version_callback(value: bool):
|
|
15
|
+
if value:
|
|
16
|
+
# Try to read from pyproject.toml first (for dev mode)
|
|
17
|
+
from pathlib import Path
|
|
18
|
+
|
|
19
|
+
version = "unknown"
|
|
20
|
+
|
|
21
|
+
try:
|
|
22
|
+
# Look for pyproject.toml relative to this file
|
|
23
|
+
# monoco/main.py -> ../pyproject.toml
|
|
24
|
+
pyproject_path = Path(__file__).parent.parent / "pyproject.toml"
|
|
25
|
+
if pyproject_path.exists():
|
|
26
|
+
with open(pyproject_path, "r", encoding="utf-8") as f:
|
|
27
|
+
for line in f:
|
|
28
|
+
if line.strip().startswith('version = "'):
|
|
29
|
+
version = line.split('"')[1]
|
|
30
|
+
break
|
|
31
|
+
|
|
32
|
+
if version == "unknown":
|
|
33
|
+
import importlib.metadata
|
|
34
|
+
version = importlib.metadata.version("monoco-toolkit")
|
|
35
|
+
except Exception:
|
|
36
|
+
# Fallback
|
|
37
|
+
pass
|
|
38
|
+
|
|
39
|
+
print(f"Monoco Toolkit v{version}")
|
|
40
|
+
raise typer.Exit()
|
|
41
|
+
|
|
42
|
+
|
|
14
43
|
@app.callback()
|
|
15
|
-
def main(
|
|
44
|
+
def main(
|
|
45
|
+
ctx: typer.Context,
|
|
46
|
+
version: Optional[bool] = typer.Option(
|
|
47
|
+
None, "--version", "-v", help="Show version and exit", callback=version_callback, is_eager=True
|
|
48
|
+
),
|
|
49
|
+
root: Optional[str] = typer.Option(
|
|
50
|
+
None, "--root", help="Explicitly specify the Monoco Workspace root directory."
|
|
51
|
+
)
|
|
52
|
+
):
|
|
16
53
|
"""
|
|
17
54
|
Monoco Toolkit - The sensory and motor system for Monoco Agents.
|
|
18
55
|
"""
|
|
@@ -21,9 +58,57 @@ def main(ctx: typer.Context):
|
|
|
21
58
|
if ctx.invoked_subcommand:
|
|
22
59
|
capture_event("cli_command_executed", {"command": ctx.invoked_subcommand})
|
|
23
60
|
|
|
61
|
+
# Strict Workspace Resolution
|
|
62
|
+
# Commands allowed to run without a workspace
|
|
63
|
+
NO_WORKSPACE_COMMANDS = ["init", "clone"]
|
|
64
|
+
|
|
65
|
+
# Initialize Config
|
|
66
|
+
from monoco.core.config import get_config, find_monoco_root
|
|
67
|
+
from pathlib import Path
|
|
68
|
+
|
|
69
|
+
# If subcommand is not in whitelist, we enforce workspace
|
|
70
|
+
require_workspace = False
|
|
71
|
+
if ctx.invoked_subcommand and ctx.invoked_subcommand not in NO_WORKSPACE_COMMANDS:
|
|
72
|
+
require_workspace = True
|
|
73
|
+
|
|
74
|
+
try:
|
|
75
|
+
# We pass root if provided. If require_workspace is True, get_config will throw if not found.
|
|
76
|
+
# Note: If root is None, it defaults to CWD in get_config.
|
|
77
|
+
|
|
78
|
+
# Auto-discover root if not provided
|
|
79
|
+
config_root = root
|
|
80
|
+
if config_root is None:
|
|
81
|
+
discovered = find_monoco_root()
|
|
82
|
+
# Only use discovered root if it actually has .monoco
|
|
83
|
+
if (discovered / ".monoco").exists():
|
|
84
|
+
config_root = str(discovered)
|
|
85
|
+
|
|
86
|
+
get_config(project_root=config_root, require_project=require_workspace)
|
|
87
|
+
except FileNotFoundError as e:
|
|
88
|
+
# Graceful exit for workspace errors
|
|
89
|
+
from rich.console import Console
|
|
90
|
+
console = Console()
|
|
91
|
+
console.print(f"[bold red]Error:[/bold red] {e}")
|
|
92
|
+
console.print(f"[yellow]Tip:[/yellow] Run this command in a Monoco Workspace root (containing .monoco), or use [bold]--root <path>[/bold].")
|
|
93
|
+
raise typer.Exit(code=1)
|
|
94
|
+
|
|
24
95
|
from monoco.core.setup import init_cli
|
|
25
96
|
app.command(name="init")(init_cli)
|
|
26
97
|
|
|
98
|
+
from monoco.core.sync import sync_command, uninstall_command
|
|
99
|
+
app.command(name="sync")(sync_command)
|
|
100
|
+
app.command(name="uninstall")(uninstall_command)
|
|
101
|
+
|
|
102
|
+
@app.command(name="doctor")
|
|
103
|
+
def doctor_cmd(
|
|
104
|
+
force: bool = typer.Option(False, "--force", "-f", help="Force refresh of agent state")
|
|
105
|
+
):
|
|
106
|
+
"""
|
|
107
|
+
Diagnose Agent Environment.
|
|
108
|
+
"""
|
|
109
|
+
from monoco.features.agent.doctor import doctor
|
|
110
|
+
doctor(force)
|
|
111
|
+
|
|
27
112
|
@app.command()
|
|
28
113
|
def info():
|
|
29
114
|
"""
|
|
@@ -42,8 +127,14 @@ def info():
|
|
|
42
127
|
|
|
43
128
|
mode = "Agent (JSON)" if os.getenv("AGENT_FLAG") == "true" else "Human (Rich)"
|
|
44
129
|
|
|
130
|
+
import importlib.metadata
|
|
131
|
+
try:
|
|
132
|
+
version = importlib.metadata.version("monoco-toolkit")
|
|
133
|
+
except importlib.metadata.PackageNotFoundError:
|
|
134
|
+
version = "unknown"
|
|
135
|
+
|
|
45
136
|
status = Status(
|
|
46
|
-
version=
|
|
137
|
+
version=version,
|
|
47
138
|
mode=mode,
|
|
48
139
|
root=os.getcwd(),
|
|
49
140
|
project=f"{settings.project.name} ({settings.project.key})"
|
|
@@ -60,14 +151,36 @@ from monoco.features.issue import commands as issue_cmd
|
|
|
60
151
|
from monoco.features.spike import commands as spike_cmd
|
|
61
152
|
from monoco.features.i18n import commands as i18n_cmd
|
|
62
153
|
from monoco.features.config import commands as config_cmd
|
|
154
|
+
from monoco.cli import project as project_cmd
|
|
155
|
+
from monoco.cli import workspace as workspace_cmd
|
|
63
156
|
|
|
64
157
|
app.add_typer(issue_cmd.app, name="issue", help="Manage development issues")
|
|
65
158
|
app.add_typer(spike_cmd.app, name="spike", help="Manage research spikes")
|
|
66
159
|
app.add_typer(i18n_cmd.app, name="i18n", help="Manage documentation i18n")
|
|
67
160
|
app.add_typer(config_cmd.app, name="config", help="Manage configuration")
|
|
161
|
+
app.add_typer(project_cmd.app, name="project", help="Manage projects")
|
|
162
|
+
app.add_typer(workspace_cmd.app, name="workspace", help="Manage workspace")
|
|
163
|
+
|
|
164
|
+
from monoco.features.agent import commands as agent_cmd
|
|
165
|
+
app.add_typer(agent_cmd.app, name="agent", help="Delegate tasks to Agent CLIs")
|
|
68
166
|
|
|
69
167
|
from monoco.daemon.commands import serve
|
|
70
168
|
app.command(name="serve")(serve)
|
|
71
169
|
|
|
170
|
+
@app.command()
|
|
171
|
+
def pty(
|
|
172
|
+
host: str = "127.0.0.1",
|
|
173
|
+
port: int = 3124,
|
|
174
|
+
cwd: Optional[str] = None
|
|
175
|
+
):
|
|
176
|
+
"""
|
|
177
|
+
Start the Monoco PTY Daemon (WebSocket).
|
|
178
|
+
"""
|
|
179
|
+
from monoco.features.pty.server import run_pty_server
|
|
180
|
+
from pathlib import Path
|
|
181
|
+
|
|
182
|
+
path = Path(cwd) if cwd else None
|
|
183
|
+
run_pty_server(host, port, path)
|
|
184
|
+
|
|
72
185
|
if __name__ == "__main__":
|
|
73
186
|
app()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: monoco-toolkit
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: Agent Native Toolkit for Monoco - Task Management & Kanban for AI Agents
|
|
5
5
|
Project-URL: Homepage, https://monoco.io
|
|
6
6
|
Project-URL: Repository, https://github.com/IndenScale/Monoco
|
|
@@ -74,12 +74,19 @@ monoco init
|
|
|
74
74
|
|
|
75
75
|
### 3. Take Control
|
|
76
76
|
|
|
77
|
+
Start the backend control hub:
|
|
78
|
+
|
|
77
79
|
```bash
|
|
78
|
-
# Start the control hub
|
|
79
80
|
monoco serve
|
|
80
81
|
```
|
|
81
82
|
|
|
82
|
-
|
|
83
|
+
Then, launch the visual mission dashboard from anywhere:
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
npx @monoco-io/kanban
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Visit `http://localhost:3123` (or the URL displayed in your terminal) to enter your cockpit.
|
|
83
90
|
|
|
84
91
|
---
|
|
85
92
|
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
monoco/main.py,sha256=MhS-vdL05KGZeEYU4XNbJEFXuNyRUyTFiZ1hrmxNCMs,6098
|
|
2
|
+
monoco/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
monoco/cli/project.py,sha256=w4oUWzOV42qh34g4klyzZfTUg6ux0oEdSinMCzmhH3E,2786
|
|
4
|
+
monoco/cli/workspace.py,sha256=vhRsbjgO6ek6PWYdmhk9EeYW_xWRV196yl7-xPfcRAI,1305
|
|
5
|
+
monoco/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
monoco/core/config.py,sha256=WJvYtLCLG4sRYcg46-fD7D5Uv32Ex1KQXD-i257hZGs,10781
|
|
7
|
+
monoco/core/execution.py,sha256=rySL0ueJvTEQ1JhdpumsNBQHJpj08nfaHQMlX-1uh6k,1846
|
|
8
|
+
monoco/core/feature.py,sha256=oAtQWUHMuqIFbq2gj8sPfYBlJZvMMXZqyUlCMrIVGUE,2007
|
|
9
|
+
monoco/core/git.py,sha256=i_NKT9_n57S9EKeb8kF2yTEdw70FZ88-lpMqW4lzVds,8228
|
|
10
|
+
monoco/core/injection.py,sha256=4BuQ5RVozyU99uSOzPwgc6MFMZUcECerTik5lF39I9A,7078
|
|
11
|
+
monoco/core/integrations.py,sha256=QRZjCwHb6xudIoxrFSE_gvQKNWlIOXGn-SxZelqqrWw,7667
|
|
12
|
+
monoco/core/lsp.py,sha256=aif3iMgfpyCrBL1qlbakJerjT--ePwoWnRa-5CCMMkY,1844
|
|
13
|
+
monoco/core/output.py,sha256=9JbCxqxHZlviNJXpUorGVxv_gAn4q72FPgjwBQrPiCI,3502
|
|
14
|
+
monoco/core/registry.py,sha256=xix21TDeJgRiZ2kvHitnac4RsqMdp1aERpYGSrwfIpY,1180
|
|
15
|
+
monoco/core/setup.py,sha256=gx_jrSlRpHxIisuA3JUG-dnHTzIpq4Jq5zz_5Y2MkNY,9313
|
|
16
|
+
monoco/core/skills.py,sha256=5qK-0YlOnNQLqyo6-T4GVBrkjsbrszb5ugXeXRRcQ00,16597
|
|
17
|
+
monoco/core/state.py,sha256=KlmOn0KXO8g9S_KUIrUylAKdBpyH_1AOBvrYSj_khdE,1884
|
|
18
|
+
monoco/core/sync.py,sha256=s0qQ5PsVn_IWGWUNThdvNFS-CncztDzsTM3QLupC6Og,8514
|
|
19
|
+
monoco/core/telemetry.py,sha256=DZQGOhvpe0XL34RCDaTZEUhmkD4abBTZumZJQlALzpY,2923
|
|
20
|
+
monoco/core/workspace.py,sha256=0RWx8H_Kx56TYVrAURTSJW4aWOUylXofkvXBhRNjP_E,3074
|
|
21
|
+
monoco/core/agent/__init__.py,sha256=tBCm6PDqPFo81yO949nW897INjl7ot46CPup9IrXExE,108
|
|
22
|
+
monoco/core/agent/action.py,sha256=HpOLzp-mttJY0SDVbRlstDVqjFKozIAdjQdJ4Gp3xiY,5161
|
|
23
|
+
monoco/core/agent/adapters.py,sha256=3M6-8uz_WOxXY1bMdu3epQ15v9dc-8Bolq00-mwLxwM,3517
|
|
24
|
+
monoco/core/agent/protocol.py,sha256=E7y_i2JzYGpzSCRCUIuzu1ATav-Xu1K01ka6Zncm4-o,831
|
|
25
|
+
monoco/core/agent/state.py,sha256=sRav6uwkXao8yPl08CEB-cqK1EfiDyMnVxoSYxvYcis,3523
|
|
26
|
+
monoco/core/resources/en/AGENTS.md,sha256=3TpCLNC1s_lIbDfJJBRmmROMoy9sZXu8BOag8M9NXI0,327
|
|
27
|
+
monoco/core/resources/en/SKILL.md,sha256=1PrBqCgjDxT1LMSeu11BzlMhfboo_UlgZxdzBm7Tp9c,2161
|
|
28
|
+
monoco/core/resources/zh/AGENTS.md,sha256=pGQOLt8mcRygJotd5oC8l9604hikQoUiS99QsHCe-UM,298
|
|
29
|
+
monoco/core/resources/zh/SKILL.md,sha256=YlO0OO-yxwtZG4pMwTMAVaZ5-tfwysNYzLJNdULLHiE,1896
|
|
30
|
+
monoco/daemon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
monoco/daemon/app.py,sha256=I_BWs4WcJoTobssFKRBlAcD2CRnJtr6EPlFoGB5Hy-Y,15586
|
|
32
|
+
monoco/daemon/commands.py,sha256=dN4D8ca0vPjj0WyjCSs8senneta1afm_bnNYv_kmGlU,1125
|
|
33
|
+
monoco/daemon/models.py,sha256=5T2SggaTdKWKRihjGhFOQM57s7WwF4Nx7c6C4YUeMSw,967
|
|
34
|
+
monoco/daemon/reproduce_stats.py,sha256=Q_zAj0Yj8l-77QDdtsLz1kWr68HeO7f1T6xC6VP43Vo,1261
|
|
35
|
+
monoco/daemon/services.py,sha256=dMhy2ddzGtBBWTGtI14R-2aikENAgPsphxDkno1JAPU,5377
|
|
36
|
+
monoco/daemon/stats.py,sha256=r-L0k6CdxkAkwLZV3V-jW7PldB9S3uNklQGLCEKA3Sc,4563
|
|
37
|
+
monoco/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
+
monoco/features/agent/commands.py,sha256=p2wc05pzEeyPEYpfkHo2-X89IdnDp7hO1LCc2JBTCuI,5898
|
|
39
|
+
monoco/features/agent/doctor.py,sha256=qqUu_rUjVp7ur1sYpL4VSpw8vwbwbjvXAFvXQP-lbNQ,924
|
|
40
|
+
monoco/features/config/commands.py,sha256=PQaSq81zH4h8d1bFa4B2ANSXSdyjBFqVm_nBvEq1rNE,4889
|
|
41
|
+
monoco/features/i18n/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
+
monoco/features/i18n/adapter.py,sha256=M9iSEKykEiUe1YobHKmvfEjv7x7KgGuh-6yhgUJuN_s,973
|
|
43
|
+
monoco/features/i18n/commands.py,sha256=GxU3YSYVKKQKsVy35VZECRXgnZz0xl-xfgO-99qwbkw,8210
|
|
44
|
+
monoco/features/i18n/core.py,sha256=s0r-48yMxrIrpWNX7r8JhtGX4X-Kd1P1bDAgNyluQ24,9227
|
|
45
|
+
monoco/features/i18n/resources/en/AGENTS.md,sha256=zzuF7BW6x8Mj6LZZmeM6wTbG5CSCDMShf4rwtN7XITg,197
|
|
46
|
+
monoco/features/i18n/resources/en/SKILL.md,sha256=Z8fAAqeMvpLDw1D_9AzZIykS5-HLVM9nnlRZLWBTPqM,2203
|
|
47
|
+
monoco/features/i18n/resources/zh/AGENTS.md,sha256=lKkwLLCADRH7UDq9no4eQY2sRfJrb64JoZ_HNved8vA,175
|
|
48
|
+
monoco/features/i18n/resources/zh/SKILL.md,sha256=y2UuwhZmCBy0pXGxWLNrhxb94zcNfGEMBA_imJgDqVg,1894
|
|
49
|
+
monoco/features/issue/adapter.py,sha256=Y-ghwRoSEgm_A-cqY8Un-5srxydXdb9ytlKHLm89eJQ,1265
|
|
50
|
+
monoco/features/issue/commands.py,sha256=LjBKplstvSAPxQ-PSvxe1y2sP-6wPrc8O9wGiXNpH_E,32189
|
|
51
|
+
monoco/features/issue/core.py,sha256=cAPmJVLMCPMkfMe2WNZVdSQr0Pg6s8sN-SMU7LlhtR0,47108
|
|
52
|
+
monoco/features/issue/linter.py,sha256=g98_NKXZFGw0ewBX7g-80CAKvPE0zdazQw1hT2uFtcU,11117
|
|
53
|
+
monoco/features/issue/migration.py,sha256=9gtgFi1V1pzwXo0-H4cIoBvSBERIWopXLCB4oSxTQLc,4715
|
|
54
|
+
monoco/features/issue/models.py,sha256=pMBLvcGrqO0tpf-7TMnt9VAIzgkq5P79-hqfH8T_EBw,5044
|
|
55
|
+
monoco/features/issue/monitor.py,sha256=QEN0mqZ3tKwBfMjN87-LdrVoIEe0prA-uMHOBGy1VZk,3476
|
|
56
|
+
monoco/features/issue/validator.py,sha256=oFKl3xG0tM0A33LVCHoLbsCK5PE-GlTTfJNcWnVDOPY,11373
|
|
57
|
+
monoco/features/issue/resources/en/AGENTS.md,sha256=OjEnkXCqwfMArJfJQhldrQYXqoregfGthyhJeyx7MPw,715
|
|
58
|
+
monoco/features/issue/resources/en/SKILL.md,sha256=p0vhVpe3xLKg0iXSNofoLNvsq8j2pmv5CD1B2mUeIGk,2732
|
|
59
|
+
monoco/features/issue/resources/zh/AGENTS.md,sha256=2MLIZ5-i-oBnl7_YAZBBoKkNqANpHj73iw18QQbSm5c,759
|
|
60
|
+
monoco/features/issue/resources/zh/SKILL.md,sha256=_aXDThhsJag9OLK2X5LRVhaFyMcl4DcZvcSj1_UUkx8,3828
|
|
61
|
+
monoco/features/pty/core.py,sha256=eM1EvHQrgExSnatO15pyfhh1VZoz0BBTfNYdXqG8HZ8,5711
|
|
62
|
+
monoco/features/pty/router.py,sha256=7h80EPpOuE7hX5ifkxkzffcLZGecd5X8OmNvOji5ToI,5078
|
|
63
|
+
monoco/features/pty/server.py,sha256=kw2csMZ_R4_Xx6ta2dbznWtgNZLfrWOAkMp8NjlZYBc,1920
|
|
64
|
+
monoco/features/skills/__init__.py,sha256=L8YNGPWyyFWq5WqNossfeB0AKHJF_omrn1VzJBrRFcM,23
|
|
65
|
+
monoco/features/skills/core.py,sha256=mpd0Cq-k2MvHRTPq9saFvZgYXUBGJ9pnK5lUmzUfZbY,3418
|
|
66
|
+
monoco/features/spike/adapter.py,sha256=npJ4J775Df0DDi-LH-3u2jCuKjTIXyZUbLD0KNvHlcc,1062
|
|
67
|
+
monoco/features/spike/commands.py,sha256=ctC2Kbe0fgpeDfw5106P0rsKEBDue0rFI4eMNRpXMDw,3880
|
|
68
|
+
monoco/features/spike/core.py,sha256=vGMA3Tzuy0tB6r-FjnqcDalpiFWNw9CANSfQ5uV7Hg4,4589
|
|
69
|
+
monoco/features/spike/resources/en/AGENTS.md,sha256=NG3CMnlDk_0J8hnRUcueAM9lgIQr_dZ42R_31-LC48E,306
|
|
70
|
+
monoco/features/spike/resources/en/SKILL.md,sha256=qKDcVh0D3pDRvfNLh1Bzo4oQU3obpl4tqdlzxeiWYMk,1911
|
|
71
|
+
monoco/features/spike/resources/zh/AGENTS.md,sha256=5RHNl7fc3RdYYTFH483ojJl_arGPKkyYziOuGgFbqqg,290
|
|
72
|
+
monoco/features/spike/resources/zh/SKILL.md,sha256=boGPgAfTHbEzdwomRh-qVEveWSgvYaPUdi_4YZVXGHI,1714
|
|
73
|
+
monoco_toolkit-0.2.5.dist-info/METADATA,sha256=k2Bb7dwO7fDCUisJeMwmH53rJ7Gx4f44_8VHJF1O30A,3743
|
|
74
|
+
monoco_toolkit-0.2.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
75
|
+
monoco_toolkit-0.2.5.dist-info/entry_points.txt,sha256=iYj7FWYBdtClU15-Du1skqD0s6SFSIhJvxJ29VWp8ng,43
|
|
76
|
+
monoco_toolkit-0.2.5.dist-info/licenses/LICENSE,sha256=ACAGGjV6aod4eIlVUTx1q9PZbnZGN5bBwkSs9RHj83s,1071
|
|
77
|
+
monoco_toolkit-0.2.5.dist-info/RECORD,,
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
monoco/main.py,sha256=XBYDD9kQt_a0wRIZ1vtOshRG8kUugach7CnHoAgS84I,2052
|
|
2
|
-
monoco/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
monoco/core/config.py,sha256=oiWB4bYkLGNhV9J3nGHdYjnVIux0gi8u9oYEpcvanpA,4768
|
|
4
|
-
monoco/core/git.py,sha256=Qy5VjCKe0Y1y0rjqYULxT_viS7S4phTljf8hkd9DA8Q,6424
|
|
5
|
-
monoco/core/output.py,sha256=CK8efvj0Q-pWrcJMdXwbuCyfsykWZ_pen9YWuDsivXQ,3192
|
|
6
|
-
monoco/core/setup.py,sha256=qbMh6LV5wvXNYwquzxpmf3JZAoNDcwLClnNZ2QXPajs,8406
|
|
7
|
-
monoco/core/telemetry.py,sha256=7sW468fTLFEfIGyTAsIagmJeQild07kIwM9M_KrPITM,2841
|
|
8
|
-
monoco/core/workspace.py,sha256=pFMC2culomxOF6Q1XqpEHCB8WjEEPBxKObUsOVpIG-E,1306
|
|
9
|
-
monoco/daemon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
monoco/daemon/app.py,sha256=RdNVjaB1JJUJ3_qCfKzBWyTRoNZV10KsBxoMHG--To8,12819
|
|
11
|
-
monoco/daemon/commands.py,sha256=dN4D8ca0vPjj0WyjCSs8senneta1afm_bnNYv_kmGlU,1125
|
|
12
|
-
monoco/daemon/models.py,sha256=DqhR8_t0Oz1Tptqkw9KGZMgvPyL8mvb01aFdbmKqi4M,812
|
|
13
|
-
monoco/daemon/reproduce_stats.py,sha256=Q_zAj0Yj8l-77QDdtsLz1kWr68HeO7f1T6xC6VP43Vo,1261
|
|
14
|
-
monoco/daemon/services.py,sha256=ExSPd2J4QtzrHPG_sYjNMDtA3p_3xmQXo_gfL-2oIUY,9151
|
|
15
|
-
monoco/daemon/stats.py,sha256=r-L0k6CdxkAkwLZV3V-jW7PldB9S3uNklQGLCEKA3Sc,4563
|
|
16
|
-
monoco/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
monoco/features/config/commands.py,sha256=BySoGkIYia6RTsouDREAyjLV14n-_sZnInzPDlPdYCo,2139
|
|
18
|
-
monoco/features/i18n/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
monoco/features/i18n/commands.py,sha256=M_T8Ddw54p42wsZIowFjBq72mXKLsppzBRcHUByfhls,4816
|
|
20
|
-
monoco/features/i18n/core.py,sha256=recjfNhJA2xdqFUMIivZ2omQZEzbgXJ1QvhjmvEDj24,5957
|
|
21
|
-
monoco/features/issue/commands.py,sha256=w89KS19pJfMRzbIMIECQatalvPe4Q5rT8vSPfUnRQik,29448
|
|
22
|
-
monoco/features/issue/core.py,sha256=FW3S-qdWw5XTze1X3fuNk8O6IbjJl2wRcrGXQYI02_Q,43483
|
|
23
|
-
monoco/features/issue/linter.py,sha256=ZMNpp_0ehbzBMYROfPtCr4O4JL8mhdO9L0F3EAi96lE,7657
|
|
24
|
-
monoco/features/issue/models.py,sha256=JCipMV2FMdyyvy-KIHtjOJHzcE2Cw_Hi-z1M3XfRQfI,4843
|
|
25
|
-
monoco/features/skills/__init__.py,sha256=L8YNGPWyyFWq5WqNossfeB0AKHJF_omrn1VzJBrRFcM,23
|
|
26
|
-
monoco/features/skills/core.py,sha256=mpd0Cq-k2MvHRTPq9saFvZgYXUBGJ9pnK5lUmzUfZbY,3418
|
|
27
|
-
monoco/features/spike/commands.py,sha256=BpwYYIpihmezJACOxgQojsCM7RwXqL0_EB6wCl--Mm8,3947
|
|
28
|
-
monoco/features/spike/core.py,sha256=FSlO3Lhz49_nyFp68TpxBdkFKksShz5S33Qxh74ZFpY,5150
|
|
29
|
-
monoco_toolkit-0.1.0.dist-info/METADATA,sha256=esyYDPaHLk09TnnmNgJi3pK9_yqpXlTXD9oQS7TxfjM,3602
|
|
30
|
-
monoco_toolkit-0.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
31
|
-
monoco_toolkit-0.1.0.dist-info/entry_points.txt,sha256=iYj7FWYBdtClU15-Du1skqD0s6SFSIhJvxJ29VWp8ng,43
|
|
32
|
-
monoco_toolkit-0.1.0.dist-info/licenses/LICENSE,sha256=ACAGGjV6aod4eIlVUTx1q9PZbnZGN5bBwkSs9RHj83s,1071
|
|
33
|
-
monoco_toolkit-0.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|