zeline 0.3.1__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.
- zeline-0.3.1/LICENSE +21 -0
- zeline-0.3.1/MANIFEST.in +6 -0
- zeline-0.3.1/PKG-INFO +383 -0
- zeline-0.3.1/README.md +327 -0
- zeline-0.3.1/pyproject.toml +81 -0
- zeline-0.3.1/setup.cfg +4 -0
- zeline-0.3.1/tests/test_agent.py +891 -0
- zeline-0.3.1/tests/test_ask_user.py +299 -0
- zeline-0.3.1/tests/test_branding.py +129 -0
- zeline-0.3.1/tests/test_browser.py +558 -0
- zeline-0.3.1/tests/test_bundled_skill_references.py +409 -0
- zeline-0.3.1/tests/test_checkpoints.py +357 -0
- zeline-0.3.1/tests/test_cli.py +584 -0
- zeline-0.3.1/tests/test_community_docs.py +505 -0
- zeline-0.3.1/tests/test_compaction.py +280 -0
- zeline-0.3.1/tests/test_continuation_and_stop.py +392 -0
- zeline-0.3.1/tests/test_custom_tools.py +380 -0
- zeline-0.3.1/tests/test_delegation.py +476 -0
- zeline-0.3.1/tests/test_discord_gateway.py +176 -0
- zeline-0.3.1/tests/test_drain_restart.py +342 -0
- zeline-0.3.1/tests/test_events.py +148 -0
- zeline-0.3.1/tests/test_formatters.py +311 -0
- zeline-0.3.1/tests/test_gateway_service.py +480 -0
- zeline-0.3.1/tests/test_git_tool.py +311 -0
- zeline-0.3.1/tests/test_installers.py +479 -0
- zeline-0.3.1/tests/test_lsp.py +466 -0
- zeline-0.3.1/tests/test_memory.py +169 -0
- zeline-0.3.1/tests/test_model_switch_text.py +51 -0
- zeline-0.3.1/tests/test_offload.py +145 -0
- zeline-0.3.1/tests/test_openapi_tools.py +530 -0
- zeline-0.3.1/tests/test_plugins.py +431 -0
- zeline-0.3.1/tests/test_project_rules.py +289 -0
- zeline-0.3.1/tests/test_public_core.py +3380 -0
- zeline-0.3.1/tests/test_public_package_sanitization.py +60 -0
- zeline-0.3.1/tests/test_reader_search_retry.py +48 -0
- zeline-0.3.1/tests/test_schedule_task.py +297 -0
- zeline-0.3.1/tests/test_scheduler.py +552 -0
- zeline-0.3.1/tests/test_security_hygiene.py +143 -0
- zeline-0.3.1/tests/test_self_update.py +350 -0
- zeline-0.3.1/tests/test_send_file.py +248 -0
- zeline-0.3.1/tests/test_session_transfer.py +318 -0
- zeline-0.3.1/tests/test_skill_publish.py +147 -0
- zeline-0.3.1/tests/test_skills_backup.py +120 -0
- zeline-0.3.1/tests/test_task_board.py +245 -0
- zeline-0.3.1/tests/test_tool_index.py +376 -0
- zeline-0.3.1/tests/test_tool_protocol.py +123 -0
- zeline-0.3.1/tests/test_transcription.py +310 -0
- zeline-0.3.1/tests/test_updater.py +291 -0
- zeline-0.3.1/tests/test_usage_stats.py +253 -0
- zeline-0.3.1/tests/test_web_providers.py +110 -0
- zeline-0.3.1/tests/test_windows_support.py +383 -0
- zeline-0.3.1/zeline/SOUL.md +126 -0
- zeline-0.3.1/zeline/__init__.py +5 -0
- zeline-0.3.1/zeline/_termkey.py +137 -0
- zeline-0.3.1/zeline/_winproc.py +160 -0
- zeline-0.3.1/zeline/agent.py +1135 -0
- zeline-0.3.1/zeline/branding.py +174 -0
- zeline-0.3.1/zeline/browser.py +428 -0
- zeline-0.3.1/zeline/checkpoints.py +309 -0
- zeline-0.3.1/zeline/cli.py +2513 -0
- zeline-0.3.1/zeline/compaction.py +315 -0
- zeline-0.3.1/zeline/config.py +808 -0
- zeline-0.3.1/zeline/custom_tools.py +317 -0
- zeline-0.3.1/zeline/delegation.py +285 -0
- zeline-0.3.1/zeline/delivery.py +118 -0
- zeline-0.3.1/zeline/events.py +216 -0
- zeline-0.3.1/zeline/formatters.py +154 -0
- zeline-0.3.1/zeline/gateway_service.py +781 -0
- zeline-0.3.1/zeline/gateways/__init__.py +126 -0
- zeline-0.3.1/zeline/gateways/discord.py +157 -0
- zeline-0.3.1/zeline/gateways/telegram.py +3115 -0
- zeline-0.3.1/zeline/gateways/webhook.py +147 -0
- zeline-0.3.1/zeline/gateways/whatsapp.py +370 -0
- zeline-0.3.1/zeline/interaction.py +212 -0
- zeline-0.3.1/zeline/lsp.py +564 -0
- zeline-0.3.1/zeline/mcp.py +372 -0
- zeline-0.3.1/zeline/memory.py +307 -0
- zeline-0.3.1/zeline/network_routes.py +161 -0
- zeline-0.3.1/zeline/offload.py +162 -0
- zeline-0.3.1/zeline/openapi_tools.py +588 -0
- zeline-0.3.1/zeline/plugins.py +299 -0
- zeline-0.3.1/zeline/project_rules.py +216 -0
- zeline-0.3.1/zeline/scheduler.py +646 -0
- zeline-0.3.1/zeline/self_update.py +318 -0
- zeline-0.3.1/zeline/session_store.py +412 -0
- zeline-0.3.1/zeline/session_transfer.py +174 -0
- zeline-0.3.1/zeline/sessions.py +373 -0
- zeline-0.3.1/zeline/skill_publish.py +326 -0
- zeline-0.3.1/zeline/skills/ZENITH_INDEX.md +218 -0
- zeline-0.3.1/zeline/skills/account-automation/SKILL.md +194 -0
- zeline-0.3.1/zeline/skills/account-automation/references/browser-automation-playbook.md +165 -0
- zeline-0.3.1/zeline/skills/account-automation/references/zeline-browser-tool-roadmap.md +72 -0
- zeline-0.3.1/zeline/skills/airtable.md +215 -0
- zeline-0.3.1/zeline/skills/api-key-proxy.md +167 -0
- zeline-0.3.1/zeline/skills/apple-notes.md +77 -0
- zeline-0.3.1/zeline/skills/architecture-diagram.md +143 -0
- zeline-0.3.1/zeline/skills/arxiv.md +394 -0
- zeline-0.3.1/zeline/skills/ascii-art.md +309 -0
- zeline-0.3.1/zeline/skills/ascii-video.md +243 -0
- zeline-0.3.1/zeline/skills/audiocraft-audio-generation.md +1072 -0
- zeline-0.3.1/zeline/skills/auto-register/SKILL.md +144 -0
- zeline-0.3.1/zeline/skills/auto-register/scripts/auto_register.py +487 -0
- zeline-0.3.1/zeline/skills/backup-zeline.md +29 -0
- zeline-0.3.1/zeline/skills/baoyu-infographic.md +2714 -0
- zeline-0.3.1/zeline/skills/blogwatcher.md +124 -0
- zeline-0.3.1/zeline/skills/brainstorming.md +173 -0
- zeline-0.3.1/zeline/skills/bug_bounty_copilot/SKILL.md +125 -0
- zeline-0.3.1/zeline/skills/bug_bounty_copilot/references/recon.md +71 -0
- zeline-0.3.1/zeline/skills/bug_bounty_copilot/references/reporting.md +110 -0
- zeline-0.3.1/zeline/skills/bug_bounty_copilot/references/tooling.md +78 -0
- zeline-0.3.1/zeline/skills/bug_bounty_copilot/references/verification-and-poc.md +114 -0
- zeline-0.3.1/zeline/skills/bug_bounty_copilot/references/vuln-classes.md +101 -0
- zeline-0.3.1/zeline/skills/bug_bounty_copilot/references/web3.md +118 -0
- zeline-0.3.1/zeline/skills/build-llm-agent-from-scratch.md +551 -0
- zeline-0.3.1/zeline/skills/canvas-design.md +134 -0
- zeline-0.3.1/zeline/skills/captcha-solving-2captcha/SKILL.md +216 -0
- zeline-0.3.1/zeline/skills/captcha-solving-2captcha/references/one-api-checkin.md +103 -0
- zeline-0.3.1/zeline/skills/check-provider-health.md +24 -0
- zeline-0.3.1/zeline/skills/check-server-health.md +24 -0
- zeline-0.3.1/zeline/skills/claude-design.md +639 -0
- zeline-0.3.1/zeline/skills/codebase-inspection.md +103 -0
- zeline-0.3.1/zeline/skills/comfyui.md +591 -0
- zeline-0.3.1/zeline/skills/community-landing-site.md +358 -0
- zeline-0.3.1/zeline/skills/computer-use/SKILL.md +263 -0
- zeline-0.3.1/zeline/skills/conversation-runtime-state/SKILL.md +92 -0
- zeline-0.3.1/zeline/skills/data-file-formatting.md +129 -0
- zeline-0.3.1/zeline/skills/design-md.md +293 -0
- zeline-0.3.1/zeline/skills/diagram-maker.md +259 -0
- zeline-0.3.1/zeline/skills/doc-coauthoring.md +377 -0
- zeline-0.3.1/zeline/skills/document-templater.md +310 -0
- zeline-0.3.1/zeline/skills/dogfood.md +361 -0
- zeline-0.3.1/zeline/skills/domain-availability-check.md +214 -0
- zeline-0.3.1/zeline/skills/english-tutor.md +92 -0
- zeline-0.3.1/zeline/skills/evaluating-llms-harness.md +2009 -0
- zeline-0.3.1/zeline/skills/excalidraw/SKILL.md +184 -0
- zeline-0.3.1/zeline/skills/excalidraw/references/colors.md +44 -0
- zeline-0.3.1/zeline/skills/excalidraw/references/dark-mode.md +67 -0
- zeline-0.3.1/zeline/skills/excalidraw/references/examples.md +247 -0
- zeline-0.3.1/zeline/skills/excalidraw/scripts/upload.py +133 -0
- zeline-0.3.1/zeline/skills/excel-dashboard-builder.md +88 -0
- zeline-0.3.1/zeline/skills/figma-mcp.md +41 -0
- zeline-0.3.1/zeline/skills/finishing-a-development-branch.md +203 -0
- zeline-0.3.1/zeline/skills/frontend-design.md +52 -0
- zeline-0.3.1/zeline/skills/gif-search.md +78 -0
- zeline-0.3.1/zeline/skills/github-auth/SKILL.md +250 -0
- zeline-0.3.1/zeline/skills/github-auth/scripts/gh-env.sh +66 -0
- zeline-0.3.1/zeline/skills/github-bulk-follow-unfollow/SKILL.md +344 -0
- zeline-0.3.1/zeline/skills/github-bulk-follow-unfollow/scripts/gh-unfollow-batch.sh +132 -0
- zeline-0.3.1/zeline/skills/github-bulk-follow-unfollow/scripts/gh-unfollow-retry-loop.sh +100 -0
- zeline-0.3.1/zeline/skills/github-code-review.md +550 -0
- zeline-0.3.1/zeline/skills/github-issues.md +438 -0
- zeline-0.3.1/zeline/skills/github-merge-troubleshooting.md +97 -0
- zeline-0.3.1/zeline/skills/github-pr-workflow.md +705 -0
- zeline-0.3.1/zeline/skills/github-protected-merge.md +108 -0
- zeline-0.3.1/zeline/skills/github-readme-design/SKILL.md +185 -0
- zeline-0.3.1/zeline/skills/github-readme-design/references/animate-static-artwork-banner.md +59 -0
- zeline-0.3.1/zeline/skills/github-readme-design/references/build-wordmark-logo-from-scratch.md +117 -0
- zeline-0.3.1/zeline/skills/github-readme-design/references/profile-readme-animation.md +111 -0
- zeline-0.3.1/zeline/skills/github-readme-design/references/profile-readme-vs-repo.md +30 -0
- zeline-0.3.1/zeline/skills/github-readme-design/scripts/animate_artwork_banner.py +72 -0
- zeline-0.3.1/zeline/skills/github-repo-audit/SKILL.md +383 -0
- zeline-0.3.1/zeline/skills/github-repo-audit/scripts/brand_scan.py +113 -0
- zeline-0.3.1/zeline/skills/github-repo-management.md +672 -0
- zeline-0.3.1/zeline/skills/github-repo-rename.md +255 -0
- zeline-0.3.1/zeline/skills/gog.md +94 -0
- zeline-0.3.1/zeline/skills/google-workspace/SKILL.md +334 -0
- zeline-0.3.1/zeline/skills/google-workspace/references/gmail-search-syntax.md +63 -0
- zeline-0.3.1/zeline/skills/google-workspace/scripts/_zeline_home.py +42 -0
- zeline-0.3.1/zeline/skills/google-workspace/scripts/google_api.py +1225 -0
- zeline-0.3.1/zeline/skills/google-workspace/scripts/gws_bridge.py +111 -0
- zeline-0.3.1/zeline/skills/google-workspace/scripts/setup.py +481 -0
- zeline-0.3.1/zeline/skills/heartmula.md +162 -0
- zeline-0.3.1/zeline/skills/himalaya.md +730 -0
- zeline-0.3.1/zeline/skills/huggingface-hub.md +73 -0
- zeline-0.3.1/zeline/skills/humanizer.md +634 -0
- zeline-0.3.1/zeline/skills/imessage.md +90 -0
- zeline-0.3.1/zeline/skills/invoice-generator.md +267 -0
- zeline-0.3.1/zeline/skills/jupyter-live-kernel.md +157 -0
- zeline-0.3.1/zeline/skills/linear-cli.md +129 -0
- zeline-0.3.1/zeline/skills/llama-cpp.md +1875 -0
- zeline-0.3.1/zeline/skills/llm-wiki.md +495 -0
- zeline-0.3.1/zeline/skills/local-dev-servers.md +665 -0
- zeline-0.3.1/zeline/skills/manim-video.md +270 -0
- zeline-0.3.1/zeline/skills/maps/SKILL.md +185 -0
- zeline-0.3.1/zeline/skills/maps/scripts/maps_client.py +500 -0
- zeline-0.3.1/zeline/skills/marketanalysis.md +598 -0
- zeline-0.3.1/zeline/skills/mcp-builder.md +117 -0
- zeline-0.3.1/zeline/skills/mcporter.md +39 -0
- zeline-0.3.1/zeline/skills/mem0-memory-mcp/SKILL.md +138 -0
- zeline-0.3.1/zeline/skills/meme-maker.md +45 -0
- zeline-0.3.1/zeline/skills/mkdocs-community-site.md +249 -0
- zeline-0.3.1/zeline/skills/mobile-finance-app-design.md +318 -0
- zeline-0.3.1/zeline/skills/mobile-visual-qa/SKILL.md +82 -0
- zeline-0.3.1/zeline/skills/n8n-workflow-automation.md +379 -0
- zeline-0.3.1/zeline/skills/nano-pdf.md +41 -0
- zeline-0.3.1/zeline/skills/network-route/SKILL.md +53 -0
- zeline-0.3.1/zeline/skills/newapi-daily-checkin/SKILL.md +164 -0
- zeline-0.3.1/zeline/skills/newapi-daily-checkin/scripts/newapi_checkin.sh +267 -0
- zeline-0.3.1/zeline/skills/news-scraper.md +104 -0
- zeline-0.3.1/zeline/skills/node-inspect-debugger.md +314 -0
- zeline-0.3.1/zeline/skills/notion.md +553 -0
- zeline-0.3.1/zeline/skills/obsidian-graph-generator.md +559 -0
- zeline-0.3.1/zeline/skills/obsidian.md +57 -0
- zeline-0.3.1/zeline/skills/ocr-and-documents.md +364 -0
- zeline-0.3.1/zeline/skills/openai-whisper-api.md +211 -0
- zeline-0.3.1/zeline/skills/openai-whisper.md +16 -0
- zeline-0.3.1/zeline/skills/openconnector.md +172 -0
- zeline-0.3.1/zeline/skills/openhue.md +96 -0
- zeline-0.3.1/zeline/skills/oracle.md +104 -0
- zeline-0.3.1/zeline/skills/p5js/SKILL.md +552 -0
- zeline-0.3.1/zeline/skills/p5js/references/animation.md +439 -0
- zeline-0.3.1/zeline/skills/p5js/references/color-systems.md +352 -0
- zeline-0.3.1/zeline/skills/p5js/references/core-api.md +410 -0
- zeline-0.3.1/zeline/skills/p5js/references/export-pipeline.md +212 -0
- zeline-0.3.1/zeline/skills/p5js/references/interaction.md +398 -0
- zeline-0.3.1/zeline/skills/p5js/references/shapes-and-geometry.md +300 -0
- zeline-0.3.1/zeline/skills/p5js/references/troubleshooting.md +199 -0
- zeline-0.3.1/zeline/skills/p5js/references/typography.md +302 -0
- zeline-0.3.1/zeline/skills/p5js/references/visual-effects.md +369 -0
- zeline-0.3.1/zeline/skills/p5js/references/webgl-and-3d.md +423 -0
- zeline-0.3.1/zeline/skills/p5js/scripts/export-frames.js +175 -0
- zeline-0.3.1/zeline/skills/p5js/scripts/render.sh +108 -0
- zeline-0.3.1/zeline/skills/p5js/scripts/serve.sh +28 -0
- zeline-0.3.1/zeline/skills/p5js/scripts/setup.sh +87 -0
- zeline-0.3.1/zeline/skills/p5js/templates/viewer.html +242 -0
- zeline-0.3.1/zeline/skills/pil-image-animation/SKILL.md +66 -0
- zeline-0.3.1/zeline/skills/pil-image-animation/references/pil-effects-cookbook.md +133 -0
- zeline-0.3.1/zeline/skills/plan.md +334 -0
- zeline-0.3.1/zeline/skills/polymarket.md +590 -0
- zeline-0.3.1/zeline/skills/popular-web-designs.md +1822 -0
- zeline-0.3.1/zeline/skills/powerpoint.md +1337 -0
- zeline-0.3.1/zeline/skills/pretext.md +479 -0
- zeline-0.3.1/zeline/skills/prop-firm-evaluation.md +105 -0
- zeline-0.3.1/zeline/skills/prop-firm-trading.md +65 -0
- zeline-0.3.1/zeline/skills/prop-firm-vetting.md +105 -0
- zeline-0.3.1/zeline/skills/python-debugpy.md +364 -0
- zeline-0.3.1/zeline/skills/reactflow-graph-visualization.md +270 -0
- zeline-0.3.1/zeline/skills/reactflow-graph.md +215 -0
- zeline-0.3.1/zeline/skills/receiving-code-review.md +207 -0
- zeline-0.3.1/zeline/skills/reportlab-pdf-reports/SKILL.md +100 -0
- zeline-0.3.1/zeline/skills/reportlab-pdf-reports/references/reportlab-report-cookbook.md +158 -0
- zeline-0.3.1/zeline/skills/requesting-code-review/LICENSE.txt +10 -0
- zeline-0.3.1/zeline/skills/requesting-code-review/SKILL.md +95 -0
- zeline-0.3.1/zeline/skills/requesting-code-review/code-reviewer.md +172 -0
- zeline-0.3.1/zeline/skills/response-formatting.md +138 -0
- zeline-0.3.1/zeline/skills/restart-local-server.md +18 -0
- zeline-0.3.1/zeline/skills/sag.md +64 -0
- zeline-0.3.1/zeline/skills/segment-anything-model.md +990 -0
- zeline-0.3.1/zeline/skills/self-analysis.md +30 -0
- zeline-0.3.1/zeline/skills/serving-llms-vllm.md +1599 -0
- zeline-0.3.1/zeline/skills/simplify-code.md +207 -0
- zeline-0.3.1/zeline/skills/sketch.md +207 -0
- zeline-0.3.1/zeline/skills/songsee.md +76 -0
- zeline-0.3.1/zeline/skills/songwriting-and-ai-music.md +274 -0
- zeline-0.3.1/zeline/skills/sonoscli.md +43 -0
- zeline-0.3.1/zeline/skills/spike.md +192 -0
- zeline-0.3.1/zeline/skills/spotify-player.md +34 -0
- zeline-0.3.1/zeline/skills/spreadsheet-tracker-template.md +59 -0
- zeline-0.3.1/zeline/skills/status-report-generator.md +250 -0
- zeline-0.3.1/zeline/skills/summarize.md +65 -0
- zeline-0.3.1/zeline/skills/systematic-debugging/LICENSE.txt +10 -0
- zeline-0.3.1/zeline/skills/systematic-debugging/SKILL.md +283 -0
- zeline-0.3.1/zeline/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
- zeline-0.3.1/zeline/skills/systematic-debugging/condition-based-waiting.md +115 -0
- zeline-0.3.1/zeline/skills/systematic-debugging/defense-in-depth.md +122 -0
- zeline-0.3.1/zeline/skills/systematic-debugging/find-polluter.sh +72 -0
- zeline-0.3.1/zeline/skills/systematic-debugging/root-cause-tracing.md +169 -0
- zeline-0.3.1/zeline/skills/telegram-inline-picker.md +459 -0
- zeline-0.3.1/zeline/skills/telegram-mini-app-web3.md +136 -0
- zeline-0.3.1/zeline/skills/telegram-mini-app.md +914 -0
- zeline-0.3.1/zeline/skills/telegram-miniapp-storefront.md +553 -0
- zeline-0.3.1/zeline/skills/telegram-sales-bot.md +941 -0
- zeline-0.3.1/zeline/skills/temp-email-automation.md +383 -0
- zeline-0.3.1/zeline/skills/terminal-cli-branding.md +403 -0
- zeline-0.3.1/zeline/skills/test-driven-development/LICENSE.txt +10 -0
- zeline-0.3.1/zeline/skills/test-driven-development/SKILL.md +320 -0
- zeline-0.3.1/zeline/skills/test-driven-development/writing-good-tests.md +198 -0
- zeline-0.3.1/zeline/skills/theme-factory.md +61 -0
- zeline-0.3.1/zeline/skills/tmux.md +282 -0
- zeline-0.3.1/zeline/skills/trello.md +86 -0
- zeline-0.3.1/zeline/skills/using-git-worktrees.md +169 -0
- zeline-0.3.1/zeline/skills/verification-before-completion.md +122 -0
- zeline-0.3.1/zeline/skills/video-frames.md +114 -0
- zeline-0.3.1/zeline/skills/weather.md +66 -0
- zeline-0.3.1/zeline/skills/webapp-testing/LICENSE.txt +14 -0
- zeline-0.3.1/zeline/skills/webapp-testing/SKILL.md +96 -0
- zeline-0.3.1/zeline/skills/webapp-testing/examples/console_logging.py +35 -0
- zeline-0.3.1/zeline/skills/webapp-testing/examples/element_discovery.py +40 -0
- zeline-0.3.1/zeline/skills/webapp-testing/examples/static_html_automation.py +33 -0
- zeline-0.3.1/zeline/skills/webapp-testing/scripts/with_server.py +106 -0
- zeline-0.3.1/zeline/skills/weights-and-biases.md +586 -0
- zeline-0.3.1/zeline/skills/xurl.md +92 -0
- zeline-0.3.1/zeline/skills/youtube-content.md +268 -0
- zeline-0.3.1/zeline/skills/zeline-bench/SKILL.md +95 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/DISPATCH.md +178 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/README.md +117 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/SKILL.md +104 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/airdrop_automation.md +282 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/bridge.md +376 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/browser.md +80 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/contract_read.md +44 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/contract_write.md +48 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/defi.md +387 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/deploy.md +76 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/governor.md +84 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/monitoring.md +1029 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/nft.md +190 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/security.md +193 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/sniping.md +250 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/swap.md +264 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/wallets.md +205 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/references/web3_connect.md +351 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/airdrop_runner.py +233 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/bridge_engine.py +267 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/browser_engine.py +208 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/contract_reader.py +192 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/contract_writer.py +168 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/deploy_engine.py +159 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/governor.py +265 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/mev.py +126 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/monitoring.py +317 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/monitoring_advanced.py +619 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/nft_engine.py +203 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/swap_engine.py +263 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/wallet_manager.py +253 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/scripts/web3_connect.py +276 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/tests/README.md +43 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/tests/_bootstrap.py +106 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/tests/run_tests.sh +14 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/tests/test_airdrop_runner.py +72 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/tests/test_bridge_engine.py +25 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/tests/test_governor.py +141 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/tests/test_monitoring.py +54 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/tests/test_monitoring_advanced.py +46 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/tests/test_nft_engine.py +26 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/tests/test_swap_engine.py +37 -0
- zeline-0.3.1/zeline/skills/zeline-crypto/tests/test_web3_connect.py +74 -0
- zeline-0.3.1/zeline/skills/zeline-eval/SKILL.md +70 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z0.md +154 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z1.md +118 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z10.md +376 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z100.md +42 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z101.md +39 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z102.md +43 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z103.md +39 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z104.md +54 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z105.md +52 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z106.md +61 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z107.md +53 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z108.md +72 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z109.md +84 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z11.md +294 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z12.md +228 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z13.md +405 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z14.md +86 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z15.md +81 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z16.md +234 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z17.md +106 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z18.md +151 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z19.md +155 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z2.md +335 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z20.md +69 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z21.md +82 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z22.md +95 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z23.md +66 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z24.md +65 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z25.md +88 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z26.md +73 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z27.md +95 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z28.md +73 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z29.md +85 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z3.md +212 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z30.md +68 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z31.md +63 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z32.md +98 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z33.md +43 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z34.md +43 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z35.md +41 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z36.md +45 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z37.md +41 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z38.md +45 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z39.md +41 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z4.md +335 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z40.md +38 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z41.md +42 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z42.md +38 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z43.md +53 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z44.md +51 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z45.md +60 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z46.md +52 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z47.md +71 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z48.md +83 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z49.md +381 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z5.md +176 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z50.md +466 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z51.md +722 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z52.md +95 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z53.md +103 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z54.md +116 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z55.md +126 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z56.md +118 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z57.md +85 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z58.md +81 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z59.md +404 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z6.md +290 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z61.md +155 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z62.md +117 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z63.md +334 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z64.md +291 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z65.md +334 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z66.md +175 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z67.md +289 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z68.md +464 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z69.md +235 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z7.md +475 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z70.md +292 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z71.md +375 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z72.md +255 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z73.md +228 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z74.md +405 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z75.md +93 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z76.md +81 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z77.md +235 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z78.md +104 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z79.md +13 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z8.md +236 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z80.md +159 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z81.md +13 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z82.md +98 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z83.md +54 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z84.md +52 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z85.md +61 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z86.md +53 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z87.md +72 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z88.md +84 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z89.md +201 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z9.md +293 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z90.md +167 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z91.md +208 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z92.md +13 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z93.md +96 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z94.md +13 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z95.md +13 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z96.md +42 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z97.md +44 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z98.md +42 -0
- zeline-0.3.1/zeline/skills/zeline-zenith-z99.md +46 -0
- zeline-0.3.1/zeline/skills.py +948 -0
- zeline-0.3.1/zeline/tasks.py +265 -0
- zeline-0.3.1/zeline/tool_index.py +245 -0
- zeline-0.3.1/zeline/tool_protocol.py +147 -0
- zeline-0.3.1/zeline/tools.py +2888 -0
- zeline-0.3.1/zeline/transcribe.py +183 -0
- zeline-0.3.1/zeline/updater.py +218 -0
- zeline-0.3.1/zeline/usage_stats.py +267 -0
- zeline-0.3.1/zeline/vcs.py +314 -0
- zeline-0.3.1/zeline/web_providers.py +219 -0
- zeline-0.3.1/zeline/zenith_tools/__init__.py +6 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/alerts.py +192 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/alpha_radar.py +148 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/api_harvester.py +178 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/automation.py +128 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/backtest.py +97 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/briefing.py +156 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/claim_watcher.py +122 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/cli.py +686 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/community_intel.py +143 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/content.py +198 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/contract_watch.py +115 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/cost_ledger.py +190 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/counts.py +57 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/.env.example +29 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/README.md +62 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/coordinator/config.py +76 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/coordinator/coordinator.py +216 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/coordinator/ctfd_client.py +83 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/coordinator/llm.py +294 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/coordinator/sandbox.py +71 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/coordinator/solver.py +173 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/coordinator/state.py +66 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/coordinator/swarm.py +81 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/flag_validator.py +90 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/gandalf_solver.py +224 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/requirements.txt +4 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/rsa_attacks.py +185 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/run.py +33 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/sandbox/Dockerfile.sandbox +69 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/scope.example.json +14 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/scope_guard.py +113 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/templates/angr_solver_template.py +84 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf/templates/pwn_template.py +87 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/ctf.py +183 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/dashboard.py +119 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/desktop_control.py +86 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/dryrun.py +120 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/e2e_demo.py +765 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/eligibility.py +128 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/eval.py +307 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/exit_planner.py +93 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/explain.py +88 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/exploit_builder.py +1165 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/farm_roi.py +120 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/gateway_manager.py +365 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/guide_studio.py +126 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/hids.py +157 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/hook_lab.py +122 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/humanizer.py +110 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/mcp_builder.py +142 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/memory_engine.py +159 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/model_registry.py +198 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/multimodal.py +86 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/opsec_checker.py +501 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/planner.py +138 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/prd.py +116 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/reflection.py +203 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/repurpose.py +122 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/research_q.py +97 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/revenue_engine.py +216 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/revenue_optimizer.py +1356 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/router_log.py +127 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/rugcheck.py +126 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/scam_sentinel.py +150 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/scene_prep.py +147 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/secret_tripwire.py +121 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/skill_forge.py +57 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/skill_integrity.py +185 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/skill_market.py +98 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/swarm.py +97 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/sybil_audit.py +139 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/team_auth.py +1244 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/team_routing.py +209 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/run_tests.sh +6 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_alpha_radar.py +52 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_api_harvester.py +99 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_claim_watcher.py +51 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_community_intel.py +57 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_contract_watch.py +57 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_cost_ledger.py +55 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_ctf.py +56 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_ctf_swarm.py +397 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_dryrun.py +54 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_eligibility.py +47 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_eval_regression.py +65 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_exit_planner.py +38 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_farm_roi.py +49 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_guide_studio.py +51 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_hook_lab.py +47 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_repurpose.py +56 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_revenue_engine.py +116 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_router_log.py +54 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_rugcheck.py +47 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_scam_sentinel.py +51 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_secret_tripwire.py +50 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_sybil_audit.py +54 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_team_auth.py +191 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_team_routing.py +609 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_treasury.py +522 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_unlock_engine.py +55 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/tests/test_video_pipeline.py +52 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/treasury.py +190 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/triage.py +110 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/unlock_engine.py +111 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/vault.py +113 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/video_pipeline.py +118 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/voice.py +87 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/watchdog.py +126 -0
- zeline-0.3.1/zeline/zenith_tools/scripts/zeline_bridge.py +519 -0
- zeline-0.3.1/zeline.egg-info/PKG-INFO +383 -0
- zeline-0.3.1/zeline.egg-info/SOURCES.txt +571 -0
- zeline-0.3.1/zeline.egg-info/dependency_links.txt +1 -0
- zeline-0.3.1/zeline.egg-info/entry_points.txt +2 -0
- zeline-0.3.1/zeline.egg-info/requires.txt +7 -0
- zeline-0.3.1/zeline.egg-info/top_level.txt +1 -0
zeline-0.3.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Mahesa F. Ferdinand
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
zeline-0.3.1/MANIFEST.in
ADDED
zeline-0.3.1/PKG-INFO
ADDED
|
@@ -0,0 +1,383 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: zeline
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: Zeline — an open-source agentic AI framework by Zerolinear.
|
|
5
|
+
Author: Mahesa F. Ferdinand
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 Mahesa F. Ferdinand
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Project-URL: Homepage, https://github.com/Mftrferdinand/Zeline
|
|
29
|
+
Project-URL: Documentation, https://github.com/Mftrferdinand/Zeline/blob/main/docs/installation.md
|
|
30
|
+
Project-URL: Repository, https://github.com/Mftrferdinand/Zeline
|
|
31
|
+
Project-URL: Issues, https://github.com/Mftrferdinand/Zeline/issues
|
|
32
|
+
Project-URL: Changelog, https://github.com/Mftrferdinand/Zeline/blob/main/CHANGELOG.md
|
|
33
|
+
Keywords: ai,agent,llm,telegram,whatsapp,openai-compatible
|
|
34
|
+
Classifier: Development Status :: 4 - Beta
|
|
35
|
+
Classifier: Intended Audience :: Developers
|
|
36
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
37
|
+
Classifier: Operating System :: OS Independent
|
|
38
|
+
Classifier: Programming Language :: Python :: 3
|
|
39
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
40
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
41
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
42
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
43
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
44
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
45
|
+
Classifier: Topic :: Communications :: Chat
|
|
46
|
+
Requires-Python: >=3.10
|
|
47
|
+
Description-Content-Type: text/markdown
|
|
48
|
+
License-File: LICENSE
|
|
49
|
+
Requires-Dist: requests[socks]>=2.28
|
|
50
|
+
Requires-Dist: PyYAML>=6.0
|
|
51
|
+
Requires-Dist: pypdf>=4.0
|
|
52
|
+
Provides-Extra: dev
|
|
53
|
+
Requires-Dist: build>=1.2; extra == "dev"
|
|
54
|
+
Requires-Dist: ruff>=0.16; extra == "dev"
|
|
55
|
+
Dynamic: license-file
|
|
56
|
+
|
|
57
|
+
<p align="center">
|
|
58
|
+
<img src="assets/zerolinear-logo.png" alt="Zerolinear" width="760">
|
|
59
|
+
</p>
|
|
60
|
+
|
|
61
|
+
<p align="center">
|
|
62
|
+
<a href="https://github.com/Mftrferdinand/Zeline/tree/main/docs"><img src="https://img.shields.io/badge/Docs-zeline.zerolinear.com-1D4ED8?style=flat&labelColor=334155"></a>
|
|
63
|
+
<a href="https://t.me/zerolinear"><img src="https://img.shields.io/badge/Community-0A84FF?style=flat&labelColor=334155&logo=telegram&logoColor=white"></a>
|
|
64
|
+
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-1D4ED8?style=flat&labelColor=334155"></a>
|
|
65
|
+
<a href="README.md"><img src="https://img.shields.io/badge/Lang-EN-0A84FF?style=flat&labelColor=334155"></a>
|
|
66
|
+
<a href="docs/README.id.md"><img src="https://img.shields.io/badge/Lang-ID-1D4ED8?style=flat&labelColor=334155"></a>
|
|
67
|
+
<a href="docs/README.zh.md"><img src="https://img.shields.io/badge/Lang-中文-0A84FF?style=flat&labelColor=334155"></a>
|
|
68
|
+
<br>
|
|
69
|
+
<strong>— by Zerolinear, an AI research lab.</strong>
|
|
70
|
+
</p>
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
# Zeline
|
|
75
|
+
|
|
76
|
+
Zeline is an open-source agentic AI framework developed by **Zerolinear**. It's a flexible foundation for building AI agents that can reason, use tools, interact with external systems, and carry out complex, multi-step workflows.
|
|
77
|
+
|
|
78
|
+
Rather than being tied to a single model, provider, or infrastructure, Zeline is built around flexibility. Connect your preferred AI models and OpenAI-compatible endpoints, configure providers, integrate tools, and extend the framework to fit how you want your agents to work — models and providers can be swapped without rebuilding the system, keeping the agent architecture portable and adaptable.
|
|
79
|
+
|
|
80
|
+
Run it locally for development or deploy it to your own server or cloud, and connect it to the interfaces you use. The goal is to keep control in the developer's hands: your models, your tools, your infrastructure, your data. Open-source, model-agnostic, extensible, and developer-first.
|
|
81
|
+
|
|
82
|
+
## Features
|
|
83
|
+
|
|
84
|
+
- **Agent core** — an OpenAI-compatible agent loop with tool calling, plus an interactive CLI and one-shot queries
|
|
85
|
+
- **Model-agnostic** — works with OpenAI, OpenRouter, vLLM, Ollama, and any OpenAI- or Anthropic-compatible API; swap model or provider without rebuilding
|
|
86
|
+
- **Persistent memory** — long-term memory isolated per platform identity
|
|
87
|
+
- **Session persistence** — conversation history stored in SQLite (`~/.zeline/sessions.db`), so it survives gateway restarts
|
|
88
|
+
- **Skills** — reusable Markdown procedures loaded on demand; see the [Zenith skill index](zeline/skills/ZENITH_INDEX.md) for the full bundled catalog
|
|
89
|
+
- **Messaging gateways** — Telegram (long polling, commands, attachments), WhatsApp (Baileys QR pairing), and an authenticated local HTTP webhook
|
|
90
|
+
- **Built-in tools** — web search, web fetch, deep research, HTTP requests, file read/write/edit/search, image analysis, text-to-image generation, code execution, shell, and sub-agent delegation
|
|
91
|
+
- **Lazy tool schemas** — the model is sent a small core of schemas plus a one-line summary of every other tool, and fetches full parameters on demand with `tool_search`. On the `full` profile that is 6,793 characters per request instead of 17,089 (60% less), without hiding any capability: names stay visible and a listed tool can be called directly. It engages only where the saving outweighs the extra round trip, so the public `safe` profile keeps sending everything; run `zeline toolsearch` for the numbers on your own tool set
|
|
92
|
+
- **Real browser control** — the `browser` tool drives an installed Chromium/Chrome over the Chrome DevTools Protocol (open, click, type, read, screenshot), so JavaScript-rendered and logged-in pages are reachable where raw HTML fetching is not. No Playwright or Puppeteer dependency
|
|
93
|
+
- **Scheduled jobs inside the gateway** — `zeline cron` runs interval or cron-expression jobs in the running gateway process, reusing its config, provider key, and workspace, and delivers results to the chat that owns the job
|
|
94
|
+
- **Language-server intelligence** — `code_intel` asks a real LSP server for diagnostics, definitions, references, hover, and symbols; servers are discovered on PATH and never downloaded, falling back to the project linter when none is installed
|
|
95
|
+
- **Operator extension points** — Python plugin hooks can audit, rewrite, or block any tool call before it runs, plain Python files can be loaded as `custom_*` tools, and local OpenAPI 3 documents become namespaced `api_*` tools without handwritten wrappers
|
|
96
|
+
- **Nothing is silently lost** — oversized tool output is written to disk and replaced by a pointer with a head/tail preview, and conversation turns evicted to keep the context window bounded are appended to an on-disk transcript plus a deterministic digest (what you asked, which files were touched, where the archive lives) injected at the front of history. Both are recoverable with `read_file`, and neither costs a model call
|
|
97
|
+
- **Undo** — writes and edits are snapshotted first; `zeline undo` lists and restores them
|
|
98
|
+
- **Human-in-the-loop** — `ask_user` pauses the run to ask you one question, with tappable options on messaging gateways and a keyboard prompt in the CLI
|
|
99
|
+
- **Format on write** — after the agent writes or edits a file, the project's installed formatter (ruff, gofmt, biome, prettier, rustfmt, shfmt, …) runs on it, so generated code matches your repo style; configurable per extension and never overwrites a failed write
|
|
100
|
+
- **Sub-agents** — delegate a focused subtask to an isolated child agent that returns only its final summary, keeping the main context clean (depth-limited; owner profiles only)
|
|
101
|
+
- **MCP client** — connect external MCP servers (stdio or HTTP) and expose their tools automatically
|
|
102
|
+
- **Scoped tool profiles** — gate access per surface:
|
|
103
|
+
- `safe` — memory and public skills only; default for messaging gateways
|
|
104
|
+
- `workspace` — `safe` plus files inside the owner workspace
|
|
105
|
+
- `full` — `workspace` plus shell access; intended for the local owner CLI
|
|
106
|
+
|
|
107
|
+
## Install
|
|
108
|
+
|
|
109
|
+
**Requirements:** Python 3.10+. WhatsApp also needs Node.js 18+ and npm. POSIX
|
|
110
|
+
platforms use a private Python environment; Windows uses a per-user package
|
|
111
|
+
install. Neither requires root/Administrator access.
|
|
112
|
+
|
|
113
|
+
### PyPI (recommended)
|
|
114
|
+
|
|
115
|
+
```sh
|
|
116
|
+
pip install zeline
|
|
117
|
+
# or, in an isolated tool environment:
|
|
118
|
+
uv tool install zeline
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
Then `zeline setup`. Zeline is on PyPI via Trusted Publishing (OIDC) — no API
|
|
122
|
+
token stored in the repository, same verified artifacts as the release.
|
|
123
|
+
|
|
124
|
+
### Termux, Linux, macOS, and iSH
|
|
125
|
+
|
|
126
|
+
One line, and it needs no existing Python tooling — it provisions a private
|
|
127
|
+
environment for you:
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
curl -fsSLO --proto '=https' --tlsv1.2 https://github.com/Mftrferdinand/Zeline/releases/download/v0.3.1/install.sh && bash install.sh
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
Then `zeline setup`. The installer downloads the versioned wheel and verifies it
|
|
134
|
+
against `SHA256SUMS` itself before installing, so there is nothing to check by
|
|
135
|
+
hand. On iSH, run `apk add bash curl python3` first.
|
|
136
|
+
|
|
137
|
+
### Windows PowerShell
|
|
138
|
+
|
|
139
|
+
```powershell
|
|
140
|
+
iwr -UseBasicParsing https://github.com/Mftrferdinand/Zeline/releases/download/v0.3.1/install.ps1 -OutFile install.ps1; .\install.ps1
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
Then `zeline setup`.
|
|
144
|
+
|
|
145
|
+
### npm (any platform with Node.js ≥ 18)
|
|
146
|
+
|
|
147
|
+
If you already use npm, the wrapper does the same verified wheel install on
|
|
148
|
+
first run — no `curl` or `iwr` needed:
|
|
149
|
+
|
|
150
|
+
```sh
|
|
151
|
+
npm install -g zeline
|
|
152
|
+
zeline setup
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
The wrapper detects Python 3.10+ on your `PATH`, downloads the same versioned
|
|
156
|
+
wheel and `SHA256SUMS` from the GitHub release, verifies the checksum, and
|
|
157
|
+
installs into the same private runtime (`~/.local/share/zeline`). See
|
|
158
|
+
[`README.npm.md`](README.npm.md) for details.
|
|
159
|
+
|
|
160
|
+
### Verify the download independently (optional)
|
|
161
|
+
|
|
162
|
+
The installer's own wheel check comes from the same release as the installer, so
|
|
163
|
+
it proves integrity, not origin. For that, verify the release's build-provenance
|
|
164
|
+
attestation with GitHub CLI — an independent signature chain:
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
gh attestation verify install.sh --repo Mftrferdinand/Zeline
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
See the complete [installation guide](docs/installation.md) for package
|
|
171
|
+
prerequisites, platform limitations, checkout installs, updates, PATH fixes, and
|
|
172
|
+
uninstall instructions.
|
|
173
|
+
|
|
174
|
+
### Update
|
|
175
|
+
|
|
176
|
+
One command on every platform — Termux, Linux, macOS, iSH, and Windows
|
|
177
|
+
PowerShell:
|
|
178
|
+
|
|
179
|
+
```bash
|
|
180
|
+
zeline update
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
It fetches the latest release installer, verifies its SHA-256 before running it,
|
|
184
|
+
and updates in place. Your config, sessions, memory, and private skills under
|
|
185
|
+
`~/.zeline` are untouched. From a git checkout it rebuilds your local source
|
|
186
|
+
instead.
|
|
187
|
+
|
|
188
|
+
Check what you are on, and whether a release is waiting:
|
|
189
|
+
|
|
190
|
+
```bash
|
|
191
|
+
zeline version
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
Both are also available from Telegram, so a phone-only install never needs a
|
|
195
|
+
shell: **`/version`** reports the installed build against the latest release, and
|
|
196
|
+
**`/update`** performs the update. `/update` is owner-only and runs in a detached
|
|
197
|
+
process — the gateway finishes in-flight work, stops, installs, and relaunches
|
|
198
|
+
itself, with progress posted back to the chat. It refuses to run from a source
|
|
199
|
+
checkout, where installing an uncommitted working tree would be a surprise.
|
|
200
|
+
|
|
201
|
+
Then inspect the available integrations and health:
|
|
202
|
+
|
|
203
|
+
```bash
|
|
204
|
+
zeline tools list
|
|
205
|
+
zeline mcp list
|
|
206
|
+
zeline doctor
|
|
207
|
+
zeline gateway list
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
## Use the CLI
|
|
211
|
+
|
|
212
|
+
```bash
|
|
213
|
+
zeline
|
|
214
|
+
# or
|
|
215
|
+
zeline chat -q "What can you do?"
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
## Connect a platform
|
|
219
|
+
|
|
220
|
+
### Telegram
|
|
221
|
+
|
|
222
|
+
Create a bot with [@BotFather](https://t.me/BotFather), then run:
|
|
223
|
+
|
|
224
|
+
```bash
|
|
225
|
+
zeline gateway setup telegram
|
|
226
|
+
zeline gateway start
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
An empty allowlist makes the bot public. Public gateways always use the `safe` tool profile by default, so users cannot access host files or a shell.
|
|
230
|
+
|
|
231
|
+
Telegram commands:
|
|
232
|
+
|
|
233
|
+
```text
|
|
234
|
+
/start, /help Show command help
|
|
235
|
+
/status Show provider and session status
|
|
236
|
+
/models Show the active model
|
|
237
|
+
/model <provider/model> Persistently switch this installation's model
|
|
238
|
+
/new Clear the current chat history
|
|
239
|
+
/restart Restart the current Telegram chat session
|
|
240
|
+
/stop Stop this Zeline gateway process
|
|
241
|
+
/logs Show how to inspect gateway logs from the installation terminal
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
Attachments up to 256 KB are accepted for text, JSON, CSV, common code/config files, and ZIP archives containing safe text files. Text-based PDFs are extracted with `pypdf`. Images are accepted as attachment metadata; pixel analysis needs a vision-capable provider.
|
|
245
|
+
|
|
246
|
+
### WhatsApp
|
|
247
|
+
|
|
248
|
+
```bash
|
|
249
|
+
zeline gateway setup whatsapp
|
|
250
|
+
zeline gateway start
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
On first start, Zeline installs its Baileys bridge under `~/.zeline/wa-bridge/` and prints a QR code. In WhatsApp, open **Linked devices**, choose **Link a device**, then scan it.
|
|
254
|
+
|
|
255
|
+
> This gateway uses WhatsApp multi-device through Baileys, not the Meta Business API. Make sure your use complies with WhatsApp policies.
|
|
256
|
+
|
|
257
|
+
### HTTP webhook
|
|
258
|
+
|
|
259
|
+
```bash
|
|
260
|
+
zeline gateway enable webhook
|
|
261
|
+
zeline gateway start
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
The default listener is `127.0.0.1:8765`. It does not listen on the public internet.
|
|
265
|
+
|
|
266
|
+
```bash
|
|
267
|
+
curl http://127.0.0.1:8765/health
|
|
268
|
+
|
|
269
|
+
curl -X POST http://127.0.0.1:8765/message \
|
|
270
|
+
-H 'Content-Type: application/json' \
|
|
271
|
+
-H 'Authorization: Bearer YOUR_WEBHOOK_TOKEN' \
|
|
272
|
+
-d '{"chat_id":"demo-user","text":"Hello Zeline"}'
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
Show masked configuration with:
|
|
276
|
+
|
|
277
|
+
```bash
|
|
278
|
+
zeline config show
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
If you expose the webhook through a tunnel or reverse proxy, use HTTPS and keep token authentication enabled.
|
|
282
|
+
|
|
283
|
+
## Command reference
|
|
284
|
+
|
|
285
|
+
```text
|
|
286
|
+
zeline First run: gateway onboarding; later: local chat
|
|
287
|
+
zeline chat -q "..." Send one query after gateway + model setup
|
|
288
|
+
zeline setup First run: gateway picker; later: setup center
|
|
289
|
+
zeline setup <section> Configure gateway|model|tools|integrations|agent
|
|
290
|
+
zeline model Detect protocol, fetch models, and choose one
|
|
291
|
+
zeline tools list List native tools, profiles, and enabled state
|
|
292
|
+
zeline tools profile <name> Set safe|workspace|full for the local CLI
|
|
293
|
+
zeline tools enable|disable T Toggle one native tool for new sessions
|
|
294
|
+
zeline tools workspace <path> Set the owner workspace root
|
|
295
|
+
zeline tools openapi-add FILE Install a local OpenAPI 3 YAML/JSON document
|
|
296
|
+
zeline tools openapi List parsed API operations and credential variable names
|
|
297
|
+
zeline doctor Check dependencies and configuration
|
|
298
|
+
zeline config path Print the configuration location
|
|
299
|
+
zeline config show Print configuration with masked secrets
|
|
300
|
+
zeline gateway setup [name] Configure telegram, whatsapp, or webhook
|
|
301
|
+
zeline gateway enable <name> Enable a gateway
|
|
302
|
+
zeline gateway disable <name> Disable a gateway
|
|
303
|
+
zeline gateway list Show configured gateways
|
|
304
|
+
zeline gateway token webhook Explicitly reveal a webhook token
|
|
305
|
+
zeline gateway start Run enabled gateways in the background
|
|
306
|
+
zeline gateway stop Stop the background gateway process
|
|
307
|
+
zeline gateway status Show background gateway status
|
|
308
|
+
zeline gateway log Print gateway logs
|
|
309
|
+
zeline gateway run Run enabled gateways in the foreground
|
|
310
|
+
zeline skills List installed skills (catalog: zeline/skills/ZENITH_INDEX.md)
|
|
311
|
+
zeline memory Print local CLI memory
|
|
312
|
+
```
|
|
313
|
+
|
|
314
|
+
On first launch, Zeline requires one gateway selected from an arrow-key picker:
|
|
315
|
+
Telegram, WhatsApp, Webhook, or Cancel. It configures only the selected gateway,
|
|
316
|
+
returns to the terminal, and directs the user to `zeline model`; local chat stays
|
|
317
|
+
locked until both gateway and model setup are complete.
|
|
318
|
+
|
|
319
|
+
During model setup, Zeline detects OpenAI-compatible or Anthropic APIs,
|
|
320
|
+
queries the provider model endpoint, and shows a numbered picker. Secret input
|
|
321
|
+
renders one `*` per character while the real API key stays hidden. If a provider
|
|
322
|
+
cannot list models, Zeline requires an explicit model ID instead of accepting a
|
|
323
|
+
placeholder.
|
|
324
|
+
|
|
325
|
+
Zeline can safely describe its active model, provider URL, protocol, tool profile,
|
|
326
|
+
and available tools through `runtime_info` and the bundled `self-analysis` skill.
|
|
327
|
+
API keys and gateway tokens are never included.
|
|
328
|
+
|
|
329
|
+
## Security
|
|
330
|
+
|
|
331
|
+
- Keep `~/.zeline/`, `.env`, provider keys, and bot tokens out of Git.
|
|
332
|
+
- OpenAPI credentials are read only from `~/.zeline/.env` (`ZELINE_OPENAPI_<FILE>_<SCHEME>`), never exposed in model schemas, and loaded only for `workspace`/`full` profiles.
|
|
333
|
+
- Gateway users receive the `safe` profile by default.
|
|
334
|
+
- Webhooks require a secret token and bind to loopback by default.
|
|
335
|
+
- Memory is namespaced by platform identity, for example `telegram:123` or `webhook:alice`.
|
|
336
|
+
- The WhatsApp bridge uses a random runtime token between Python and Node.
|
|
337
|
+
- The repository enables secret scanning, push protection, Dependabot, CodeQL, and dependency review.
|
|
338
|
+
|
|
339
|
+
See [SECURITY.md](SECURITY.md) for reporting guidance.
|
|
340
|
+
|
|
341
|
+
## Extend it
|
|
342
|
+
|
|
343
|
+
Custom Python tools, plugin hooks that can audit or block any tool call, local
|
|
344
|
+
OpenAPI documents as tools, and MCP servers all work without changing the
|
|
345
|
+
package. See [docs/extending.md](docs/extending.md).
|
|
346
|
+
|
|
347
|
+
## Development
|
|
348
|
+
|
|
349
|
+
```bash
|
|
350
|
+
python3 -m unittest discover -s tests -v
|
|
351
|
+
ruff check zeline tests
|
|
352
|
+
python3 -m pip wheel --no-deps --wheel-dir dist .
|
|
353
|
+
```
|
|
354
|
+
|
|
355
|
+
CI runs `unittest`, not `pytest`.
|
|
356
|
+
|
|
357
|
+
**Contributions are welcome, and you do not need write access here.** Fork,
|
|
358
|
+
branch, and open a pull request against `main`; it runs the same CI matrix the
|
|
359
|
+
maintainer's does — Linux, Windows, macOS, and both installers:
|
|
360
|
+
|
|
361
|
+
```bash
|
|
362
|
+
gh repo fork Mftrferdinand/Zeline --clone --remote
|
|
363
|
+
cd Zeline && git checkout -b fix/short-description
|
|
364
|
+
git push -u origin fix/short-description
|
|
365
|
+
gh pr create --repo Mftrferdinand/Zeline --base main
|
|
366
|
+
```
|
|
367
|
+
|
|
368
|
+
[CONTRIBUTING.md](CONTRIBUTING.md) has the full flow, what each CI job proves,
|
|
369
|
+
and where things live. Issues labelled
|
|
370
|
+
[good first issue](https://github.com/Mftrferdinand/Zeline/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)
|
|
371
|
+
are scoped small on purpose. [CHANGELOG.md](CHANGELOG.md) records every release
|
|
372
|
+
with links to its pull requests.
|
|
373
|
+
|
|
374
|
+
## Roadmap
|
|
375
|
+
|
|
376
|
+
- Service integration for systemd and Termux:Boot
|
|
377
|
+
- More messaging adapters
|
|
378
|
+
- Richer interfaces on top of the app gateway
|
|
379
|
+
- Promoting more ruff rules into the blocking lint gate
|
|
380
|
+
|
|
381
|
+
## License
|
|
382
|
+
|
|
383
|
+
MIT © 2026 Mftrferdinand
|