capiscio 1.2.6__tar.gz → 2.0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: capiscio
3
- Version: 1.2.6
3
+ Version: 2.0.0
4
4
  Summary: The definitive A2A protocol validator with live endpoint testing, JWS signature verification, and transport protocol compliance checking
5
5
  Author-email: Capiscio Team <hello@capiscio.com>
6
6
  Maintainer-email: Capiscio Team <hello@capiscio.com>
@@ -132,7 +132,57 @@ capiscio validate https://agent.com --errors-only # Show only problems
132
132
  | --timeout <ms> | Request timeout (default: 10000) |
133
133
  | --schema-only | Skip live endpoint testing |
134
134
  | --skip-signature | Skip JWS signature verification |
135
- | --registry-ready | Registry deployment validation |
135
+ | --test-live | Test agent endpoint with real messages |
136
+
137
+ ### Three-Dimensional Scoring
138
+
139
+ Capiscio CLI automatically provides detailed quality scoring across three independent dimensions:
140
+
141
+ ```bash
142
+ # Scoring is shown by default
143
+ capiscio validate agent.json
144
+ ```
145
+
146
+ **Three Quality Dimensions:**
147
+ - **Spec Compliance (0-100)** - How well does the agent conform to A2A v0.3.0?
148
+ - **Trust (0-100)** - How trustworthy and secure is this agent? (includes confidence multiplier)
149
+ - **Availability (0-100)** - Is the endpoint operational? (requires `--test-live`)
150
+
151
+ Each score includes a detailed breakdown showing exactly what contributed to the result. **Learn more:** [Scoring System Documentation](https://github.com/capiscio/capiscio-cli/blob/main/docs/scoring-system.md)
152
+
153
+ ### Live Agent Testing
154
+
155
+ The `--test-live` flag tests your agent endpoint with real A2A protocol messages:
156
+
157
+ ```bash
158
+ # Test agent endpoint
159
+ capiscio validate https://agent.com --test-live
160
+
161
+ # Test with custom timeout
162
+ capiscio validate ./agent-card.json --test-live --timeout 5000
163
+
164
+ # Full validation for production
165
+ capiscio validate https://agent.com --test-live --strict --json
166
+ ```
167
+
168
+ **What it validates:**
169
+ - ✅ Endpoint connectivity
170
+ - ✅ JSONRPC and HTTP+JSON transport protocols
171
+ - ✅ A2A message structure (Message, Task, StatusUpdate, ArtifactUpdate)
172
+ - ✅ Response timing metrics
173
+
174
+ **Exit codes for automation:**
175
+ - `0` = Success
176
+ - `1` = Schema validation failed
177
+ - `2` = Network error (timeout, connection refused, DNS)
178
+ - `3` = Protocol violation (invalid A2A response)
179
+
180
+ **Use cases:**
181
+ - CI/CD post-deployment verification
182
+ - Cron-based health monitoring
183
+ - Pre-production testing
184
+ - Third-party agent evaluation
185
+ - Multi-environment validation
136
186
 
137
187
  ## Signature Verification (New in v1.2.0)
138
188
 
@@ -90,7 +90,57 @@ capiscio validate https://agent.com --errors-only # Show only problems
90
90
  | --timeout <ms> | Request timeout (default: 10000) |
91
91
  | --schema-only | Skip live endpoint testing |
92
92
  | --skip-signature | Skip JWS signature verification |
93
- | --registry-ready | Registry deployment validation |
93
+ | --test-live | Test agent endpoint with real messages |
94
+
95
+ ### Three-Dimensional Scoring
96
+
97
+ Capiscio CLI automatically provides detailed quality scoring across three independent dimensions:
98
+
99
+ ```bash
100
+ # Scoring is shown by default
101
+ capiscio validate agent.json
102
+ ```
103
+
104
+ **Three Quality Dimensions:**
105
+ - **Spec Compliance (0-100)** - How well does the agent conform to A2A v0.3.0?
106
+ - **Trust (0-100)** - How trustworthy and secure is this agent? (includes confidence multiplier)
107
+ - **Availability (0-100)** - Is the endpoint operational? (requires `--test-live`)
108
+
109
+ Each score includes a detailed breakdown showing exactly what contributed to the result. **Learn more:** [Scoring System Documentation](https://github.com/capiscio/capiscio-cli/blob/main/docs/scoring-system.md)
110
+
111
+ ### Live Agent Testing
112
+
113
+ The `--test-live` flag tests your agent endpoint with real A2A protocol messages:
114
+
115
+ ```bash
116
+ # Test agent endpoint
117
+ capiscio validate https://agent.com --test-live
118
+
119
+ # Test with custom timeout
120
+ capiscio validate ./agent-card.json --test-live --timeout 5000
121
+
122
+ # Full validation for production
123
+ capiscio validate https://agent.com --test-live --strict --json
124
+ ```
125
+
126
+ **What it validates:**
127
+ - ✅ Endpoint connectivity
128
+ - ✅ JSONRPC and HTTP+JSON transport protocols
129
+ - ✅ A2A message structure (Message, Task, StatusUpdate, ArtifactUpdate)
130
+ - ✅ Response timing metrics
131
+
132
+ **Exit codes for automation:**
133
+ - `0` = Success
134
+ - `1` = Schema validation failed
135
+ - `2` = Network error (timeout, connection refused, DNS)
136
+ - `3` = Protocol violation (invalid A2A response)
137
+
138
+ **Use cases:**
139
+ - CI/CD post-deployment verification
140
+ - Cron-based health monitoring
141
+ - Pre-production testing
142
+ - Third-party agent evaluation
143
+ - Multi-environment validation
94
144
 
95
145
  ## Signature Verification (New in v1.2.0)
96
146
 
@@ -5,6 +5,6 @@ This package provides a Python wrapper around the Capiscio CLI tool,
5
5
  allowing easy installation and usage via pip.
6
6
  """
7
7
 
8
- __version__ = "1.2.6"
8
+ __version__ = "2.0.0"
9
9
  __author__ = "Capiscio Team"
10
10
  __email__ = "hello@capiscio.com"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: capiscio
3
- Version: 1.2.6
3
+ Version: 2.0.0
4
4
  Summary: The definitive A2A protocol validator with live endpoint testing, JWS signature verification, and transport protocol compliance checking
5
5
  Author-email: Capiscio Team <hello@capiscio.com>
6
6
  Maintainer-email: Capiscio Team <hello@capiscio.com>
@@ -132,7 +132,57 @@ capiscio validate https://agent.com --errors-only # Show only problems
132
132
  | --timeout <ms> | Request timeout (default: 10000) |
133
133
  | --schema-only | Skip live endpoint testing |
134
134
  | --skip-signature | Skip JWS signature verification |
135
- | --registry-ready | Registry deployment validation |
135
+ | --test-live | Test agent endpoint with real messages |
136
+
137
+ ### Three-Dimensional Scoring
138
+
139
+ Capiscio CLI automatically provides detailed quality scoring across three independent dimensions:
140
+
141
+ ```bash
142
+ # Scoring is shown by default
143
+ capiscio validate agent.json
144
+ ```
145
+
146
+ **Three Quality Dimensions:**
147
+ - **Spec Compliance (0-100)** - How well does the agent conform to A2A v0.3.0?
148
+ - **Trust (0-100)** - How trustworthy and secure is this agent? (includes confidence multiplier)
149
+ - **Availability (0-100)** - Is the endpoint operational? (requires `--test-live`)
150
+
151
+ Each score includes a detailed breakdown showing exactly what contributed to the result. **Learn more:** [Scoring System Documentation](https://github.com/capiscio/capiscio-cli/blob/main/docs/scoring-system.md)
152
+
153
+ ### Live Agent Testing
154
+
155
+ The `--test-live` flag tests your agent endpoint with real A2A protocol messages:
156
+
157
+ ```bash
158
+ # Test agent endpoint
159
+ capiscio validate https://agent.com --test-live
160
+
161
+ # Test with custom timeout
162
+ capiscio validate ./agent-card.json --test-live --timeout 5000
163
+
164
+ # Full validation for production
165
+ capiscio validate https://agent.com --test-live --strict --json
166
+ ```
167
+
168
+ **What it validates:**
169
+ - ✅ Endpoint connectivity
170
+ - ✅ JSONRPC and HTTP+JSON transport protocols
171
+ - ✅ A2A message structure (Message, Task, StatusUpdate, ArtifactUpdate)
172
+ - ✅ Response timing metrics
173
+
174
+ **Exit codes for automation:**
175
+ - `0` = Success
176
+ - `1` = Schema validation failed
177
+ - `2` = Network error (timeout, connection refused, DNS)
178
+ - `3` = Protocol violation (invalid A2A response)
179
+
180
+ **Use cases:**
181
+ - CI/CD post-deployment verification
182
+ - Cron-based health monitoring
183
+ - Pre-production testing
184
+ - Third-party agent evaluation
185
+ - Multi-environment validation
136
186
 
137
187
  ## Signature Verification (New in v1.2.0)
138
188
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "capiscio"
7
- version = "1.2.6"
7
+ version = "2.0.0"
8
8
  description = "The definitive A2A protocol validator with live endpoint testing, JWS signature verification, and transport protocol compliance checking"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.7"
File without changes
File without changes