Skip to content
Draft
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
2 changes: 1 addition & 1 deletion src/content/docs/terminal/warpify/ssh.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: SSH with Warp features
description: >-
Use Warp's SSH extension on remote macOS and Linux hosts to get a real file
Use Warp's SSH extension on remote macOS and Linux hosts for a real file
tree, code editing, code review, codebase indexing, and reliable completions
over SSH.
---
Expand Down
4 changes: 2 additions & 2 deletions src/pages/api.astro
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const specBaseUrl = (specObject.servers as Array<{ url?: string }> | undefined)?
any HTTP client that reads HTML — including AI crawlers, scanners and agents.
-->
<section aria-label="Oz Agent API endpoint index" style="position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;">
<h1>{specInfo?.title}</h1>
<h2>{specInfo?.title}</h2>
<p>{specInfo?.description}</p>
<p>Base URL: {specBaseUrl}</p>
<p>Authentication: Bearer token (Warp API key). Obtain from account settings. Pass as Authorization: Bearer YOUR_API_KEY.</p>
Expand All @@ -215,7 +215,7 @@ const specBaseUrl = (specObject.servers as Array<{ url?: string }> | undefined)?
<article>
{Object.entries(methods).filter(([method]) => HTTP_METHODS.has(method)).map(([method, op]) => (
<section>
<h2>{method.toUpperCase()} {endpointPath}</h2>
<h3>{method.toUpperCase()} {endpointPath}</h3>
{op.summary && <p>{op.summary}</p>}
{op.description && <p>{op.description}</p>}
{op.parameters && op.parameters.length > 0 && (
Expand Down
Loading