sibyl-dev 0.2.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.
- sibyl_cli/__init__.py +31 -0
- sibyl_cli/auth.py +770 -0
- sibyl_cli/auth_store.py +230 -0
- sibyl_cli/client.py +908 -0
- sibyl_cli/common.py +230 -0
- sibyl_cli/config_cmd.py +146 -0
- sibyl_cli/config_store.py +648 -0
- sibyl_cli/context.py +458 -0
- sibyl_cli/crawl.py +429 -0
- sibyl_cli/document.py +171 -0
- sibyl_cli/entity.py +456 -0
- sibyl_cli/epic.py +1022 -0
- sibyl_cli/explore.py +315 -0
- sibyl_cli/local.py +586 -0
- sibyl_cli/main.py +441 -0
- sibyl_cli/onboarding.py +200 -0
- sibyl_cli/org.py +209 -0
- sibyl_cli/project.py +427 -0
- sibyl_cli/source.py +436 -0
- sibyl_cli/state.py +42 -0
- sibyl_cli/task.py +1019 -0
- sibyl_dev-0.2.0.dist-info/METADATA +111 -0
- sibyl_dev-0.2.0.dist-info/RECORD +25 -0
- sibyl_dev-0.2.0.dist-info/WHEEL +4 -0
- sibyl_dev-0.2.0.dist-info/entry_points.txt +2 -0
sibyl_cli/__init__.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"""sibyl-cli: Command-line interface for Sibyl knowledge graph.
|
|
2
|
+
|
|
3
|
+
This package provides the client-side CLI for interacting with a Sibyl server.
|
|
4
|
+
All commands communicate via REST API - no direct database access.
|
|
5
|
+
|
|
6
|
+
Subcommand groups:
|
|
7
|
+
- task: Task lifecycle management
|
|
8
|
+
- epic: Epic/feature grouping
|
|
9
|
+
- project: Project operations
|
|
10
|
+
- entity: Generic entity CRUD
|
|
11
|
+
- explore: Graph traversal and exploration
|
|
12
|
+
- source: Documentation source management
|
|
13
|
+
- crawl: Web crawling
|
|
14
|
+
- auth: Authentication
|
|
15
|
+
- org: Organization management
|
|
16
|
+
- config: Configuration
|
|
17
|
+
- context: Project context
|
|
18
|
+
|
|
19
|
+
Server commands (serve, db, generate, etc.) are in the sibyl-server package.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
import os
|
|
23
|
+
|
|
24
|
+
# Disable Graphiti telemetry
|
|
25
|
+
os.environ.setdefault("GRAPHITI_TELEMETRY_ENABLED", "false")
|
|
26
|
+
|
|
27
|
+
__version__ = "0.1.0"
|
|
28
|
+
|
|
29
|
+
from sibyl_cli.main import app, main
|
|
30
|
+
|
|
31
|
+
__all__ = ["__version__", "app", "main"]
|