addedOutput schema / properties / guidance
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "cost": {
+ "enum": [
+ "light",
+ "standard",
+ "heavy"
+ ],
+ "type": "string"
+ },
+ "nextTools": {
+ "description": "Candidate follow-ups; do not call them automatically or in parallel.",
+ "items": {
+ "enum": [
+ "analyze_site",
+ "analyze_html",
+ "inspect_component",
+ "capture_screenshot",
+ "extract_assets",
+ "extract_animations",
+ "extract_layout",
+ "clone_section",
+ "capture_interactions",
+ "extract_responsive",
+ "compare_replica",
+ "create_replication_kit",
+ "capture_motion",
+ "crawl_site"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "sessionPolicy": {
+ "enum": [
+ "offline-document",
+ "single-url",
+ "multi-viewport",
+ "dual-page",
+ "site-crawl"
+ ],
+ "type": "string"
+ },
+ "summary": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "tool": {
+ "const": "analyze_html",
+ "type": "string"
+ },
+ "warnings": {
+ "description": "Non-fatal limitations or incomplete evidence from this run.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "writesFiles": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "tool",
+ "summary",
+ "nextTools",
+ "warnings",
+ "cost",
+ "writesFiles",
+ "sessionPolicy"
+ ],
+ "type": "object"
+}
addedOutput schema / properties / result / additionalProperties
Added value: +{}
addedOutput schema / properties / result / properties
Added value: +{
+ "colors": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "components": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "metadata": {
+ "additionalProperties": {},
+ "properties": {
+ "analyzedAt": {
+ "type": "string"
+ },
+ "finalUrl": {
+ "type": "string"
+ },
+ "requestedUrl": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "requestedUrl",
+ "finalUrl",
+ "title",
+ "analyzedAt"
+ ],
+ "type": "object"
+ },
+ "primitives": {
+ "additionalProperties": {},
+ "properties": {},
+ "type": "object"
+ },
+ "tokens": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "typography": {
+ "additionalProperties": {},
+ "properties": {},
+ "type": "object"
+ },
+ "warnings": {
+ "description": "Non-fatal limitations or incomplete evidence from this run.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+}
addedOutput schema / properties / result / required
Added value: +[
+ "metadata",
+ "colors",
+ "typography",
+ "components",
+ "tokens",
+ "primitives",
+ "warnings"
+]
addedOutput schema / properties / result / type
Added value: +"object"
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "result",
+ "guidance"
+]