emdash-cli 0.1.43__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of emdash-cli might be problematic. Click here for more details.
- emdash_cli-0.1.43/PKG-INFO +17 -0
- emdash_cli-0.1.43/emdash_cli/__init__.py +23 -0
- emdash_cli-0.1.43/emdash_cli/client.py +734 -0
- emdash_cli-0.1.43/emdash_cli/clipboard.py +92 -0
- emdash_cli-0.1.43/emdash_cli/commands/__init__.py +39 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/__init__.py +14 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/cli.py +100 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/constants.py +51 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/file_utils.py +178 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/__init__.py +39 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/agents.py +321 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/auth.py +69 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/doctor.py +319 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/hooks.py +121 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/mcp.py +183 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/misc.py +200 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/rules.py +394 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/sessions.py +168 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/skills.py +440 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/todos.py +98 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/handlers/verify.py +282 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/interactive.py +652 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent/menus.py +728 -0
- emdash_cli-0.1.43/emdash_cli/commands/agent.py +10 -0
- emdash_cli-0.1.43/emdash_cli/commands/analyze.py +137 -0
- emdash_cli-0.1.43/emdash_cli/commands/auth.py +121 -0
- emdash_cli-0.1.43/emdash_cli/commands/db.py +95 -0
- emdash_cli-0.1.43/emdash_cli/commands/embed.py +103 -0
- emdash_cli-0.1.43/emdash_cli/commands/index.py +202 -0
- emdash_cli-0.1.43/emdash_cli/commands/plan.py +77 -0
- emdash_cli-0.1.43/emdash_cli/commands/projectmd.py +51 -0
- emdash_cli-0.1.43/emdash_cli/commands/research.py +47 -0
- emdash_cli-0.1.43/emdash_cli/commands/rules.py +93 -0
- emdash_cli-0.1.43/emdash_cli/commands/search.py +56 -0
- emdash_cli-0.1.43/emdash_cli/commands/server.py +176 -0
- emdash_cli-0.1.43/emdash_cli/commands/skills.py +337 -0
- emdash_cli-0.1.43/emdash_cli/commands/spec.py +49 -0
- emdash_cli-0.1.43/emdash_cli/commands/swarm.py +86 -0
- emdash_cli-0.1.43/emdash_cli/commands/tasks.py +52 -0
- emdash_cli-0.1.43/emdash_cli/commands/team.py +51 -0
- emdash_cli-0.1.43/emdash_cli/keyboard.py +146 -0
- emdash_cli-0.1.43/emdash_cli/main.py +108 -0
- emdash_cli-0.1.43/emdash_cli/server_manager.py +291 -0
- emdash_cli-0.1.43/emdash_cli/session_store.py +321 -0
- emdash_cli-0.1.43/emdash_cli/sse_renderer.py +794 -0
- emdash_cli-0.1.43/pyproject.toml +34 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: emdash-cli
|
|
3
|
+
Version: 0.1.43
|
|
4
|
+
Summary: EmDash CLI - Command-line interface for code intelligence
|
|
5
|
+
Author: Em Dash Team
|
|
6
|
+
Requires-Python: >=3.10,<4.0
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
13
|
+
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
14
|
+
Requires-Dist: emdash-core (>=0.1.43)
|
|
15
|
+
Requires-Dist: httpx (>=0.25.0)
|
|
16
|
+
Requires-Dist: prompt_toolkit (>=3.0.43,<4.0.0)
|
|
17
|
+
Requires-Dist: rich (>=13.7.0)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""EmDash CLI - Command-line interface for code intelligence."""
|
|
2
|
+
|
|
3
|
+
from importlib.metadata import version, PackageNotFoundError
|
|
4
|
+
from pathlib import Path
|
|
5
|
+
|
|
6
|
+
# Load .env files early so env vars are available for server subprocess
|
|
7
|
+
try:
|
|
8
|
+
from dotenv import load_dotenv
|
|
9
|
+
# Try to find .env in current dir or parent dirs
|
|
10
|
+
current = Path.cwd()
|
|
11
|
+
for _ in range(5):
|
|
12
|
+
env_path = current / ".env"
|
|
13
|
+
if env_path.exists():
|
|
14
|
+
load_dotenv(env_path, override=True)
|
|
15
|
+
break
|
|
16
|
+
current = current.parent
|
|
17
|
+
except ImportError:
|
|
18
|
+
pass # dotenv not installed
|
|
19
|
+
|
|
20
|
+
try:
|
|
21
|
+
__version__ = version("emdash-cli")
|
|
22
|
+
except PackageNotFoundError:
|
|
23
|
+
__version__ = "0.0.0-dev"
|