WS2: Developer Portal (portal/) - Standalone Next.js 14 + Tailwind CSS app — independent deployment - Home page: hero, feature grid, CTA to /get-started - /pricing: free tier limits table (10 agents, 1k calls/day) + paid tier CTA - /sdks: all 4 SDKs (Node.js, Python, Go, Java) with install + code examples - /api-explorer: Swagger UI from NEXT_PUBLIC_API_URL/openapi.json, persistAuthorization - /get-started: 4-step wizard (setup → register agent → credentials → SDK snippet) - Shared Nav component with active-link highlighting - Build: 8/8 static pages, zero TypeScript errors WS3: CLI Tool (cli/ — npm package: sentryagent) - configure, register-agent, list-agents, issue-token, rotate-credentials, tail-audit-log - Auto OAuth2 token fetch + 30s-buffer cache via client_credentials flow - chalk-formatted table output, confirmation prompts, bounded audit log dedup - bash + zsh shell completion scripts - README with installation, all commands, and completion setup - Build: tsc clean, node dist/index.js --help verified Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
834 B
TypeScript
30 lines
834 B
TypeScript
import type React from 'react';
|
|
import { GetStartedWizard } from '@/components/GetStartedWizard';
|
|
|
|
export const metadata = {
|
|
title: 'Get Started — SentryAgent AgentIdP',
|
|
description:
|
|
'Set up your first AI agent with SentryAgent AgentIdP in four steps.',
|
|
};
|
|
|
|
export default function GetStartedPage(): React.ReactElement {
|
|
const apiUrl =
|
|
process.env.NEXT_PUBLIC_API_URL ?? 'http://localhost:3000';
|
|
|
|
return (
|
|
<div className="px-6 py-16">
|
|
<div className="mb-12 text-center">
|
|
<h1 className="mb-4 text-4xl font-extrabold text-slate-900">
|
|
Get Started
|
|
</h1>
|
|
<p className="text-xl text-slate-600">
|
|
Register your first agent and get production-ready credentials in
|
|
minutes.
|
|
</p>
|
|
</div>
|
|
|
|
<GetStartedWizard apiUrl={apiUrl} />
|
|
</div>
|
|
);
|
|
}
|