Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 122 additions & 0 deletions hotato-report.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/check_public_surfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
# (tests/test_positioning_lockstep.py pins the same line across the repo).
_RETIRED_OVERCLAIM = "everything you use a hosted platform for"
_REQUIRED_PYPI_SUMMARY = "find what broke in your agent calls"
_REQUIRED_SITE_MARKER = "Local-first testing and observability for AI agents"
_REQUIRED_SITE_MARKER = "call forensics and regression guards for AI agents"
_STALE_TITLE_MARKER = "regression testing for voice agents"


Expand Down
4 changes: 2 additions & 2 deletions tests/test_check_public_surfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def test_check_release_json_and_llms_and_site_helpers():

def test_check_site_html_positioning_markers():
good = ("<title>hotato</title>"
"<h1>Local-first testing and observability for AI agents</h1>"
"<h1>Hotato: call forensics and regression guards for AI agents</h1>"
"<p>changelog: 1.6.0, 1.7.0 released earlier</p>")
assert cps.check_site_html(good, VERSION) == []

Expand All @@ -182,6 +182,6 @@ def test_check_site_html_positioning_markers():
assert cps.check_site_html(missing_marker, VERSION) != []

stale_title = ("<title>hotato -- regression testing for voice agents</title>"
"<h1>Local-first testing and observability for AI agents</h1>")
"<h1>Hotato: call forensics and regression guards for AI agents</h1>")
problems = cps.check_site_html(stale_title, VERSION)
assert any("<title>" in p for p in problems)
Loading