{"id":37516064,"url":"https://github.com/capiscio/capiscio-python","last_synced_at":"2026-03-17T06:20:25.088Z","repository":{"id":325383784,"uuid":"1100996547","full_name":"capiscio/capiscio-python","owner":"capiscio","description":"The official CapiscIO CLI tool for validating A2A agents. A lightweight Python wrapper that automatically manages the capiscio-core binary.","archived":false,"fork":false,"pushed_at":"2026-01-14T21:16:21.000Z","size":116,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-16T20:42:26.670Z","etag":null,"topics":["a2a","a2a-protocol","agent-to-agent","automation","capiscio","cli","devops","python","security","validation","wrapper"],"latest_commit_sha":null,"homepage":"https://capisc.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/capiscio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-21T03:38:21.000Z","updated_at":"2026-01-14T21:16:10.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/capiscio/capiscio-python","commit_stats":null,"previous_names":["capiscio/capiscio-python"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/capiscio/capiscio-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capiscio%2Fcapiscio-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capiscio%2Fcapiscio-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capiscio%2Fcapiscio-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capiscio%2Fcapiscio-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/capiscio","download_url":"https://codeload.github.com/capiscio/capiscio-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capiscio%2Fcapiscio-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30614950,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T04:46:40.957Z","status":"ssl_error","status_checked_at":"2026-03-17T04:46:32.538Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["a2a","a2a-protocol","agent-to-agent","automation","capiscio","cli","devops","python","security","validation","wrapper"],"created_at":"2026-01-16T08:07:43.008Z","updated_at":"2026-03-17T06:20:25.057Z","avatar_url":"https://github.com/capiscio.png","language":"Python","readme":"# CapiscIO CLI (Python)\n\n**The official command-line interface for CapiscIO, the Agent-to-Agent (A2A) validation platform.**\n\n[![PyPI version](https://badge.fury.io/py/capiscio.svg)](https://badge.fury.io/py/capiscio)\n[![Python Versions](https://img.shields.io/pypi/pyversions/capiscio.svg)](https://pypi.org/project/capiscio/)\n[![License](https://img.shields.io/github/license/capiscio/capiscio-python)](https://github.com/capiscio/capiscio-python/blob/main/LICENSE)\n[![Downloads](https://pepy.tech/badge/capiscio)](https://pepy.tech/project/capiscio)\n\n## Overview\n\nThis package provides a convenient Python distribution for the **CapiscIO CLI**. It acts as a smart wrapper that automatically manages the underlying `capiscio-core` binary (written in Go), ensuring you always have the correct executable for your operating system and architecture.\n\n\u003e **Note:** This is a wrapper. The core logic resides in [capiscio-core](https://github.com/capiscio/capiscio-core).\n\n## Installation\n\n```bash\npip install capiscio\n```\n\n## Usage\n\nOnce installed, the `capiscio` command is available in your terminal. It passes all arguments directly to the core binary.\n\n```bash\n# Validate an agent\ncapiscio validate https://my-agent.example.com\n\n# Validate with JSON output\ncapiscio validate https://my-agent.example.com --json\n\n# Check version\ncapiscio --version\n```\n\n### Wrapper Utilities\n\nThe Python wrapper includes specific commands to manage the binary:\n\n| Command | Description |\n|---------|-------------|\n| `capiscio --wrapper-version` | Display the version of this Python wrapper package. |\n| `capiscio --wrapper-clean` | Remove the cached `capiscio-core` binary (forces re-download on next run). |\n\n## How It Works\n\n1.  **Detection**: When you run `capiscio`, the script detects your OS (Linux, macOS, Windows) and Architecture (AMD64, ARM64).\n2.  **Provisioning**: It checks if the correct `capiscio-core` binary is present in your user cache.\n    *   *Linux*: `~/.cache/capiscio/bin`\n    *   *macOS*: `~/Library/Caches/capiscio/bin`\n    *   *Windows*: `%LOCALAPPDATA%\\capiscio\\bin`\n3.  **Download**: If missing, it securely downloads the release from GitHub.\n4.  **Execution**: It seamlessly replaces the Python process with the Go binary, ensuring zero overhead during execution.\n\n## Supported Platforms\n\n- **macOS**: AMD64 (Intel), ARM64 (Apple Silicon)\n- **Linux**: AMD64, ARM64\n- **Windows**: AMD64\n\n## Troubleshooting\n\n**\"Permission denied\" errors:**\nEnsure your user has write access to the cache directory. You can reset the cache by running:\n```bash\ncapiscio --wrapper-clean\n```\n\n**\"Binary not found\" or download errors:**\nIf you are behind a corporate firewall, ensure you can access `github.com`.\n\n## License\n\nApache-2.0\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcapiscio%2Fcapiscio-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcapiscio%2Fcapiscio-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcapiscio%2Fcapiscio-python/lists"}