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 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"]