htmlgraph 0.27.3__py3-none-any.whl → 0.27.4__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.
- htmlgraph/__init__.py +1 -1
- htmlgraph/orchestration/claude_launcher.py +7 -16
- {htmlgraph-0.27.3.dist-info → htmlgraph-0.27.4.dist-info}/METADATA +1 -1
- {htmlgraph-0.27.3.dist-info → htmlgraph-0.27.4.dist-info}/RECORD +11 -11
- {htmlgraph-0.27.3.data → htmlgraph-0.27.4.data}/data/htmlgraph/dashboard.html +0 -0
- {htmlgraph-0.27.3.data → htmlgraph-0.27.4.data}/data/htmlgraph/styles.css +0 -0
- {htmlgraph-0.27.3.data → htmlgraph-0.27.4.data}/data/htmlgraph/templates/AGENTS.md.template +0 -0
- {htmlgraph-0.27.3.data → htmlgraph-0.27.4.data}/data/htmlgraph/templates/CLAUDE.md.template +0 -0
- {htmlgraph-0.27.3.data → htmlgraph-0.27.4.data}/data/htmlgraph/templates/GEMINI.md.template +0 -0
- {htmlgraph-0.27.3.dist-info → htmlgraph-0.27.4.dist-info}/WHEEL +0 -0
- {htmlgraph-0.27.3.dist-info → htmlgraph-0.27.4.dist-info}/entry_points.txt +0 -0
htmlgraph/__init__.py
CHANGED
|
@@ -81,15 +81,13 @@ class ClaudeLauncher:
|
|
|
81
81
|
def _launch_resume_mode(self) -> None:
|
|
82
82
|
"""Resume last session with orchestrator rules (--continue).
|
|
83
83
|
|
|
84
|
-
Installs
|
|
85
|
-
session with orchestrator system prompt.
|
|
84
|
+
Installs/updates marketplace plugin and resumes the last Claude Code
|
|
85
|
+
session with orchestrator system prompt. Uses marketplace plugin, NOT
|
|
86
|
+
local source (only --dev uses local source).
|
|
86
87
|
"""
|
|
87
|
-
# Install plugin
|
|
88
|
+
# Install/update marketplace plugin
|
|
88
89
|
PluginManager.install_or_update(verbose=self.interactive)
|
|
89
90
|
|
|
90
|
-
# Get plugin directory
|
|
91
|
-
plugin_dir = PluginManager.get_plugin_dir()
|
|
92
|
-
|
|
93
91
|
# Load prompt
|
|
94
92
|
prompt = get_orchestrator_prompt(include_dev_mode=False)
|
|
95
93
|
|
|
@@ -97,17 +95,10 @@ class ClaudeLauncher:
|
|
|
97
95
|
if self.interactive:
|
|
98
96
|
logger.info("Resuming last Claude Code session...")
|
|
99
97
|
logger.info(" ✓ Multi-AI delegation rules injected")
|
|
98
|
+
logger.info(" ✓ Using marketplace plugin")
|
|
100
99
|
|
|
101
|
-
# Build command
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
# Add plugin directory if exists
|
|
105
|
-
if plugin_dir.exists():
|
|
106
|
-
builder.with_plugin_dir(str(plugin_dir))
|
|
107
|
-
if self.interactive:
|
|
108
|
-
logger.info(f" ✓ Loading plugin from: {plugin_dir}")
|
|
109
|
-
|
|
110
|
-
cmd = builder.build()
|
|
100
|
+
# Build command (no --plugin-dir, uses marketplace)
|
|
101
|
+
cmd = ClaudeCommandBuilder().with_resume().with_system_prompt(prompt).build()
|
|
111
102
|
|
|
112
103
|
# Execute
|
|
113
104
|
SubprocessRunner.run_claude_command(cmd)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: htmlgraph
|
|
3
|
-
Version: 0.27.
|
|
3
|
+
Version: 0.27.4
|
|
4
4
|
Summary: HTML is All You Need - Graph database on web standards
|
|
5
5
|
Project-URL: Homepage, https://github.com/Shakes-tzd/htmlgraph
|
|
6
6
|
Project-URL: Documentation, https://github.com/Shakes-tzd/htmlgraph#readme
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
htmlgraph/__init__.py,sha256=
|
|
1
|
+
htmlgraph/__init__.py,sha256=7_6mNCvGfhGT-edtfQ2j5_VDZDrjSyTppTRIkaOiLnU,6407
|
|
2
2
|
htmlgraph/__init__.pyi,sha256=8JuFVuDll9jMx9s8ZQHt2tXic-geOJHiXUMB2YjmHhU,6683
|
|
3
3
|
htmlgraph/agent_detection.py,sha256=wEmrDv4hssPX2OkEnJZBHPbalxcaloiJF_hOOow_5WE,3511
|
|
4
4
|
htmlgraph/agent_registry.py,sha256=80TPYr4P0YMizPUbTH4N5wH6D84IKs-HPBLHGeeP6bY,9449
|
|
@@ -251,7 +251,7 @@ htmlgraph/operations/initialization.py,sha256=aOUVB0YULVlRzkqXQKY3GT_PWX51H9QRPv
|
|
|
251
251
|
htmlgraph/operations/initialization.py.backup,sha256=U0ZibrAUFMgx8fhD_6rh-Ifve9e0eUDK8a-IxQ9i3Is,7067
|
|
252
252
|
htmlgraph/operations/server.py,sha256=ls3_3ULB2ktFN0WNbJrVCvWRPrzXpQuNuNy76tbyTI8,8747
|
|
253
253
|
htmlgraph/orchestration/__init__.py,sha256=udK-EtJ49wONOWc8S0pkZn40q9Io8BjB45xkC7AO4nY,1337
|
|
254
|
-
htmlgraph/orchestration/claude_launcher.py,sha256=
|
|
254
|
+
htmlgraph/orchestration/claude_launcher.py,sha256=9RnkyvnYzGWeGaZQ5zRgWeZ_kB6lKKZ-LO4_i2VL14I,6219
|
|
255
255
|
htmlgraph/orchestration/command_builder.py,sha256=kaUWqDdlUjnWg1xln878fgJh7KCs-dYts7HcodwFznU,1980
|
|
256
256
|
htmlgraph/orchestration/headless_spawner.py,sha256=3rRguOTVzKRhU3_savIL5vOuW2KkkJ0CUol3opMP7-Y,10800
|
|
257
257
|
htmlgraph/orchestration/live_events.py,sha256=aaa-svW1-SWAqs4ZZcv3VRVRx3xpZydsdi2nv9xNeu8,12198
|
|
@@ -326,12 +326,12 @@ htmlgraph/templates/AGENTS.md.template,sha256=f96h7V6ygwj-v-fanVI48eYMxR6t_se4be
|
|
|
326
326
|
htmlgraph/templates/CLAUDE.md.template,sha256=h1kG2hTX2XYig2KszsHBfzrwa_4Cfcq2Pj4SwqzeDlM,1984
|
|
327
327
|
htmlgraph/templates/GEMINI.md.template,sha256=gAGzE53Avki87BM_otqy5HdcYCoLsHgqaKjVzNzPMX8,1622
|
|
328
328
|
htmlgraph/templates/orchestration-view.html,sha256=DlS7LlcjH0oO_KYILjuF1X42t8QhKLH4F85rkO54alY,10472
|
|
329
|
-
htmlgraph-0.27.
|
|
330
|
-
htmlgraph-0.27.
|
|
331
|
-
htmlgraph-0.27.
|
|
332
|
-
htmlgraph-0.27.
|
|
333
|
-
htmlgraph-0.27.
|
|
334
|
-
htmlgraph-0.27.
|
|
335
|
-
htmlgraph-0.27.
|
|
336
|
-
htmlgraph-0.27.
|
|
337
|
-
htmlgraph-0.27.
|
|
329
|
+
htmlgraph-0.27.4.data/data/htmlgraph/dashboard.html,sha256=MUT6SaYnazoyDcvHz5hN1omYswyIoUfeoZLf2M_iblo,251268
|
|
330
|
+
htmlgraph-0.27.4.data/data/htmlgraph/styles.css,sha256=oDUSC8jG-V-hKojOBO9J88hxAeY2wJrBYTq0uCwX_Y4,7135
|
|
331
|
+
htmlgraph-0.27.4.data/data/htmlgraph/templates/AGENTS.md.template,sha256=f96h7V6ygwj-v-fanVI48eYMxR6t_se4bet1H4ZsDpI,7642
|
|
332
|
+
htmlgraph-0.27.4.data/data/htmlgraph/templates/CLAUDE.md.template,sha256=h1kG2hTX2XYig2KszsHBfzrwa_4Cfcq2Pj4SwqzeDlM,1984
|
|
333
|
+
htmlgraph-0.27.4.data/data/htmlgraph/templates/GEMINI.md.template,sha256=gAGzE53Avki87BM_otqy5HdcYCoLsHgqaKjVzNzPMX8,1622
|
|
334
|
+
htmlgraph-0.27.4.dist-info/METADATA,sha256=yPqPZlougY7y9u4JA2V96KFRw3mlAeFgWrtvogoL1qI,10220
|
|
335
|
+
htmlgraph-0.27.4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
336
|
+
htmlgraph-0.27.4.dist-info/entry_points.txt,sha256=Wmdo5cx8pt6NoMsssVE2mZH1CZLSUsrg_3iSWatiyn0,103
|
|
337
|
+
htmlgraph-0.27.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|