Skip to content

Commit f7439cc

Browse files
Improve marketplace access, search discovery, and site availability checks (#51)
* fix: restore marketplace mobile navigation and catalog recovery * feat: make site discovery crawlable and monitor public availability
1 parent fef448a commit f7439cc

17 files changed

Lines changed: 1149 additions & 138 deletions

.github/workflows/availability.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Public site availability
2+
on:
3+
schedule:
4+
- cron: '23 */6 * * *'
5+
workflow_dispatch:
6+
permissions:
7+
contents: read
8+
jobs:
9+
public-http:
10+
runs-on: ubuntu-latest
11+
timeout-minutes: 8
12+
steps:
13+
- uses: actions/checkout@v4
14+
with:
15+
persist-credentials: false
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.12'
19+
- run: python tools/check-availability.py
20+
- uses: actions/upload-artifact@v4
21+
if: always()
22+
with:
23+
name: availability-results
24+
path: availability-results.json
25+
retention-days: 14

.github/workflows/reader-journey.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
with:
1717
python-version: '3.12'
1818
- run: python tools/check-site.py
19+
- run: python tools/build-discovery.py --check
20+
- run: python tools/check-discovery.py
1921
quickstart:
2022
runs-on: ubuntu-latest
2123
timeout-minutes: 8

404.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!doctype html>
2+
<html lang="en"><head>
3+
<meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1">
4+
<title>Page not found | AgenTrust</title>
5+
<meta name="robots" content="noindex">
6+
<link rel="stylesheet" href="/design-system.css?v=19"><link rel="icon" href="/favicon.ico">
7+
</head><body class="at-page">
8+
<header class="site-header"><a class="wordmark" href="/">AgenTrust</a></header>
9+
<main class="wrap"><section><p class="eyebrow">404 · Page not found</p><h1>Find your next step.</h1>
10+
<p>This address may have moved, or the link may be incomplete.</p>
11+
<ul>
12+
<li><a href="/">Ecosystem overview and architecture</a></li>
13+
<li><a href="/quickstart/">Run your first policy check</a></li>
14+
<li><a href="/wcm/">Protect model weights with WCM</a></li>
15+
<li><a href="/marketplace/">Search integrations</a> or <a href="/marketplace/catalog/">browse the complete catalog</a></li>
16+
<li><a href="/go/">Browse the agentic controls</a></li>
17+
</ul></section></main>
18+
</body></html>

0 commit comments

Comments
 (0)