From 3d1de5ab621bc7e2cebd6e44560ef6d102f4234c Mon Sep 17 00:00:00 2001 From: Travis Fischer Date: Sat, 28 Jun 2025 11:56:50 -0500 Subject: [PATCH] fix: minor fixes --- apps/web/public/agentic-logo-dark.svg | 10 ++++++++++ apps/web/public/agentic-logo-light.svg | 10 ++++++++++ apps/web/src/components/header/index.tsx | 4 ++-- apps/web/src/components/mcp-marketplace-features.tsx | 2 +- packages/cli/src/cli.ts | 2 ++ todo.md | 1 + 6 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 apps/web/public/agentic-logo-dark.svg create mode 100644 apps/web/public/agentic-logo-light.svg diff --git a/apps/web/public/agentic-logo-dark.svg b/apps/web/public/agentic-logo-dark.svg new file mode 100644 index 00000000..a0e85be4 --- /dev/null +++ b/apps/web/public/agentic-logo-dark.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/apps/web/public/agentic-logo-light.svg b/apps/web/public/agentic-logo-light.svg new file mode 100644 index 00000000..a573c7cd --- /dev/null +++ b/apps/web/public/agentic-logo-light.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/apps/web/src/components/header/index.tsx b/apps/web/src/components/header/index.tsx index 82e61e63..b4841166 100644 --- a/apps/web/src/components/header/index.tsx +++ b/apps/web/src/components/header/index.tsx @@ -21,8 +21,8 @@ export function Header() { AGENTIC diff --git a/packages/cli/src/cli.ts b/packages/cli/src/cli.ts index aa180ffd..1caeca33 100644 --- a/packages/cli/src/cli.ts +++ b/packages/cli/src/cli.ts @@ -4,6 +4,7 @@ import { AgenticApiClient } from '@agentic/platform-api-client' import { Command } from 'commander' import type { Context } from './types' +import { version } from '../package.json' import { registerDebugCommand } from './commands/debug' import { registerDeployCommand } from './commands/deploy' import { registerGetDeploymentCommand } from './commands/get' @@ -46,6 +47,7 @@ async function main() { // Initialize the CLI program const program = new Command('agentic') .option('-j, --json', 'Print output as JSON') + .version(version) .showHelpAfterError() const logger = { diff --git a/todo.md b/todo.md index 73e138b9..c3faa467 100644 --- a/todo.md +++ b/todo.md @@ -21,6 +21,7 @@ - `createAISDKToolsFromIdentifier(projectIdentifier)` - move legacy over and update examples + docs - create agentic products for legacy tools +- consider changing web header logo to include icon ## TODO: Post-MVP