comfygit-studio 0.5.0__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.
@@ -0,0 +1,101 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ env/
8
+ venv/
9
+ ENV/
10
+ .venv
11
+ pip-log.txt
12
+ pip-delete-this-directory.txt
13
+ .pytest_cache/
14
+ *.egg-info/
15
+ dist/
16
+ build/
17
+ *.egg
18
+ .coverage
19
+ htmlcov/
20
+ .tox/
21
+ .mypy_cache/
22
+ .dmypy.json
23
+ dmypy.json
24
+ .pyre/
25
+ packages/*/uv.lock
26
+
27
+ # Node
28
+ node_modules/
29
+ npm-debug.log*
30
+ yarn-debug.log*
31
+ yarn-error.log*
32
+ *.tsbuildinfo
33
+
34
+ # Environment variables
35
+ .env
36
+ .env.local
37
+ .env.*.local
38
+
39
+ # IDE
40
+ .vscode/
41
+ .idea/
42
+ *.swp
43
+ *.swo
44
+ *~
45
+
46
+ # OS
47
+ .DS_Store
48
+ Thumbs.db
49
+
50
+ # Docker
51
+ .dockerignore
52
+
53
+ # Test environments
54
+ dev/test-environments/
55
+
56
+ # Documentation build
57
+ docs/site/
58
+ docs/comfygit-docs/site/
59
+
60
+ # Logs
61
+ *.log
62
+ logs/
63
+
64
+ # Temporary files
65
+ *.tmp
66
+ temp/
67
+ tmp/
68
+
69
+ # Local configuration
70
+ local_config.json
71
+ dev/cross-platform-test.local.toml
72
+
73
+ # LLMD files:
74
+ *llm-context.md
75
+ .llmd
76
+
77
+ # Claude:
78
+ .claude/
79
+
80
+ # Docs:
81
+ docs/archive
82
+ docs/contexts
83
+
84
+ # Helper scripts:
85
+ .setup.sh
86
+ .scripts/
87
+
88
+ # Any test environment exports
89
+ *.tar.gz
90
+ .claude/context
91
+
92
+ # bv (beads viewer) local config and caches
93
+ .bv/
94
+
95
+ # MEOW agent orchestration runtime
96
+ .meow/
97
+
98
+ # Local/retired agent task systems
99
+ .beads/
100
+ .threads/
101
+ .ctxr/
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: comfygit-studio
3
+ Version: 0.5.0
4
+ Summary: ComfyGit Studio runtime - contract API and Studio serving adapters
5
+ Project-URL: Documentation, https://docs.comfygit.org/
6
+ Project-URL: Repository, https://github.com/comfygit-ai/comfygit
7
+ Project-URL: Issues, https://github.com/comfygit-ai/comfygit/issues
8
+ Requires-Python: >=3.10
9
+ Requires-Dist: aiohttp>=3.13.4
10
+ Requires-Dist: comfygit-core==0.5.0
11
+ Description-Content-Type: text/markdown
12
+
13
+ # ComfyGit Studio Runtime
14
+
15
+ `comfygit-studio` owns the shared contract-serving runtime used by `cg serve`
16
+ and embedded ComfyGit Manager Studio routes.
17
+
18
+ It is intentionally separate from `comfygit-core`: core owns environment and
19
+ contract domain semantics, while this package owns HTTP routing, Studio static
20
+ asset serving, upload handling, run/gallery state, and ComfyUI API execution.
21
+
22
+ The public contract API is documented by the generated OpenAPI artifact at
23
+ `comfygit_studio/openapi/studio-contract-api.v1.json`. Regenerate it from the
24
+ workspace root with `make generate-openapi` and verify drift with
25
+ `make check-openapi`.
@@ -0,0 +1,13 @@
1
+ # ComfyGit Studio Runtime
2
+
3
+ `comfygit-studio` owns the shared contract-serving runtime used by `cg serve`
4
+ and embedded ComfyGit Manager Studio routes.
5
+
6
+ It is intentionally separate from `comfygit-core`: core owns environment and
7
+ contract domain semantics, while this package owns HTTP routing, Studio static
8
+ asset serving, upload handling, run/gallery state, and ComfyUI API execution.
9
+
10
+ The public contract API is documented by the generated OpenAPI artifact at
11
+ `comfygit_studio/openapi/studio-contract-api.v1.json`. Regenerate it from the
12
+ workspace root with `make generate-openapi` and verify drift with
13
+ `make check-openapi`.
@@ -0,0 +1,10 @@
1
+ """Shared Studio runtime for ComfyGit contract APIs."""
2
+
3
+ from .runtime import ServeConfig, ServeState, create_app, serve_environment
4
+
5
+ __all__ = [
6
+ "ServeConfig",
7
+ "ServeState",
8
+ "create_app",
9
+ "serve_environment",
10
+ ]