Skip to content
Closed
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
18 changes: 17 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,31 @@
name="description"
content="Ryan Gonyon helps founders and operators make fragile, AI-built or legacy software dependable. Specialized in app rescue, production readiness, AI workflow automation, and internal tool dashboards."
/>
<link rel="canonical" href="https://radical.codes/" />
<meta name="author" content="Ryan Gonyon" />
<meta property="og:title" content="Ryan Gonyon | Make Fragile Software Dependable" />
<meta
property="og:description"
content="App rescue, production readiness, AI workflow automation, and proof-first internal tools by Ryan Gonyon."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://radical.codes" />
<meta property="og:url" content="https://radical.codes/" />
<meta property="og:site_name" content="radical.codes" />
<meta property="og:image" content="https://radical.codes/og-image.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Ryan Gonyon helps founders make fragile software dependable through app rescue, production readiness, and proof-first internal tools." />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Ryan Gonyon | Make Fragile Software Dependable" />
<meta
name="twitter:description"
content="Proof-first app rescue, production readiness, AI workflow automation, and internal tools by Ryan Gonyon."
/>
<meta name="twitter:image" content="https://radical.codes/og-image.png" />
<meta name="twitter:image:alt" content="Ryan Gonyon helps founders make fragile software dependable." />
<meta name="theme-color" content="#000000" />
<link rel="manifest" href="/site.webmanifest" />
<title>Ryan Gonyon | Make Fragile Software Dependable</title>

<!-- Google Fonts: Outfit (headings), Inter (body), JetBrains Mono (code) -->
Expand Down
Binary file added public/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions public/og-image.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
User-agent: *
Allow: /

Sitemap: https://radical.codes/sitemap.xml
9 changes: 9 additions & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "radical.codes",
"short_name": "radical.codes",
"description": "Ryan Gonyon's public proof surface for app rescue, production readiness, workflow automation, and dependable software systems.",
"start_url": "/",
"display": "minimal-ui",
"background_color": "#f8f8f4",
"theme_color": "#000000"
}
Comment on lines +1 to +9

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Add icons to complete the web app manifest contract.

On Line 1-9, the manifest omits the icons array. That leaves install identity incomplete and can prevent proper install prompts/icon rendering in browsers.

Proposed patch
 {
   "name": "radical.codes",
   "short_name": "radical.codes",
   "description": "Ryan Gonyon's public proof surface for app rescue, production readiness, workflow automation, and dependable software systems.",
   "start_url": "/",
   "display": "minimal-ui",
+  "icons": [
+    {
+      "src": "/icon-192.png",
+      "sizes": "192x192",
+      "type": "image/png"
+    },
+    {
+      "src": "/icon-512.png",
+      "sizes": "512x512",
+      "type": "image/png"
+    }
+  ],
   "background_color": "`#f8f8f4`",
   "theme_color": "`#000000`"
 }
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
{
"name": "radical.codes",
"short_name": "radical.codes",
"description": "Ryan Gonyon's public proof surface for app rescue, production readiness, workflow automation, and dependable software systems.",
"start_url": "/",
"display": "minimal-ui",
"background_color": "#f8f8f4",
"theme_color": "#000000"
}
{
"name": "radical.codes",
"short_name": "radical.codes",
"description": "Ryan Gonyon's public proof surface for app rescue, production readiness, workflow automation, and dependable software systems.",
"start_url": "/",
"display": "minimal-ui",
"icons": [
{
"src": "/icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"background_color": "`#f8f8f4`",
"theme_color": "`#000000`"
}
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@public/site.webmanifest` around lines 1 - 9, The web app manifest in
site.webmanifest is missing the required `icons` array property, which prevents
proper browser installation prompts and icon rendering. Add an `icons` array
property to the manifest JSON object containing one or more icon definitions,
where each icon object specifies a `src` path to an icon image file, the `sizes`
it represents (such as 192x192 or 512x512), and the `type` indicating the image
format (such as image/png). This completes the manifest contract and enables
browsers to display the appropriate icons during installation and app launch.

9 changes: 9 additions & 0 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://radical.codes/</loc>
<lastmod>2026-06-16</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
</urlset>