Skip to content
Merged
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 README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
> [!WARNING]
> Agentsmith is currently in alpha. Changes are pushed frequently and may include breaking changes. If you encounter any issues, please reach out to support@agentsmith.app for assistance.
> Agentsmith is currently in alpha. Changes are pushed frequently and may include breaking changes. If you encounter any issues, please reach out to support@agentsmith.dev for assistance.
# Agentsmith

Expand Down
2 changes: 1 addition & 1 deletion __tests__/ts-sdk/agentsmith/agentsmith.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ export type Globals = {
gitHubUrl: 'https://github.com/chad-syntax/agentsmith';
supportUrl: 'https://agentsmith.app/support';
companyName: 'Agentsmith';
supportEmail: 'support@agentsmith.app';
supportEmail: 'support@agentsmith.dev';
};

export type Agency = {
Expand Down
4 changes: 2 additions & 2 deletions __tests__/ts-sdk/agentsmith/globals.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"gitHubUrl": "https://github.com/chad-syntax/agentsmith",
"supportUrl": "https://agentsmith.app/support",
"companyName": "Agentsmith",
"supportEmail": "support@agentsmith.app"
}
"supportEmail": "support@agentsmith.dev"
}
2 changes: 1 addition & 1 deletion content/docs/core-concepts/self-hosting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Agentsmith can be self-hosted on your own infrastructure, giving you complete co
<AlertDescription>
Agentsmith is currently in alpha. Self-hosting documentation and support will be more
comprehensive as we move out of the alpha phase. Railway template support is planned for easier
deployment. If you encounter any issues, please reach out to support@agentsmith.app for
deployment. If you encounter any issues, please reach out to support@agentsmith.dev for
assistance.
</AlertDescription>
</Alert>
Expand Down
2 changes: 1 addition & 1 deletion content/docs/sdk/reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The main client for interacting with the Agentsmith API.
description:
'The root URL for the Agentsmith API. Can be overridden for self-hosting purposes.',
type: 'string',
default: 'https://agentsmith.app',
default: 'https://agentsmith.dev',
},
supabaseUrl: {
description:
Expand Down
2 changes: 1 addition & 1 deletion sdk-prod-git-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
source ./sdk-release-base.sh

# Environment-specific configuration
NEXT_PUBLIC_SITE_URL="https://agentsmith.app"
NEXT_PUBLIC_SITE_URL="https://agentsmith.dev"
NEXT_PUBLIC_SUPABASE_URL="https://jcnpgqhjaoppfhbkcnpv.supabase.co"
NEXT_PUBLIC_SUPABASE_ANON_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImpjbnBncWhqYW9wcGZoYmtjbnB2Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MzgwMzA2OTUsImV4cCI6MjA1MzYwNjY5NX0.n_gN9QTv9qY7FlA8wyoww8Nd4PFv9EMiXiDgGOQ2Axw"

Expand Down
2 changes: 1 addition & 1 deletion sdk-stage-git-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
source ./sdk-release-base.sh

# Environment-specific configuration
NEXT_PUBLIC_SITE_URL="https://staging.agentsmith.app"
NEXT_PUBLIC_SITE_URL="https://staging.agentsmith.dev"
NEXT_PUBLIC_SUPABASE_URL="https://ehpaperavkeicrwhvsbx.supabase.co"
NEXT_PUBLIC_SUPABASE_ANON_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImVocGFwZXJhdmtlaWNyd2h2c2J4Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDc3NTA3NTQsImV4cCI6MjA2MzMyNjc1NH0.rntsQRcyVBb9UTahY4LSq5o4vuUSYfZS6h4NUK8qme0"

Expand Down
2 changes: 1 addition & 1 deletion src/app/sitemap.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { source } from '@/lib/docs/source';
import type { MetadataRoute } from 'next';

const baseUrl = process.env.NEXT_PUBLIC_SITE_URL ?? 'https://agentsmith.app';
const baseUrl = process.env.NEXT_PUBLIC_SITE_URL ?? 'https://agentsmith.dev';

export default function sitemap(): MetadataRoute.Sitemap {
const docsPages = source.getPages();
Expand Down
2 changes: 1 addition & 1 deletion src/components/studio-give-feedback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const StudioGiveFeedback = () => {
If your feedback is more suited to a private conversation or not appropriate for the
public roadmap, please email{' '}
<a className="underline" href={routes.emails.alex}>
alex@agentsmith.app
alex@agentsmith.dev
</a>
.
</AlertDialogDescription>
Expand Down
2 changes: 1 addition & 1 deletion src/constants/structured-json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import packageJson from '../../package.json';
// @ts-ignore
import gitHandoffScreenshot from '@/assets/landing-page-video-covers/git-handoff.jpg';

const siteUrl = process.env.NEXT_PUBLIC_SITE_URL || 'https://agentsmith.app';
const siteUrl = process.env.NEXT_PUBLIC_SITE_URL || 'https://agentsmith.dev';

const offersFromPricing = pricingPlans.flatMap((plan) => {
const planOffers = [];
Expand Down
2 changes: 1 addition & 1 deletion src/lib/openrouter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ export type OpenrouterModel = {
};

export const OPENROUTER_HEADERS = {
'HTTP-Referer': 'https://agentsmith.app',
'HTTP-Referer': 'https://agentsmith.dev',
'X-Title': 'Agentsmith',
'Content-Type': 'application/json',
};
Expand Down
6 changes: 3 additions & 3 deletions src/page-components/PrivacyPolicyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const PrivacyPolicyPage = () => {
&quot;we&quot;, &quot;us&quot;, or &quot;our&quot;) collects, uses, and discloses your
personal information when you visit, use our services, or make a purchase from&nbsp;
<a href="https://agentsmith.app/" className="underline hover:text-gray-600">
https://agentsmith.app
https://agentsmith.dev
</a>{' '}
(the &quot;Site&quot;) or otherwise communicate with us (collectively, the
&quot;Services&quot;). For purposes of this Privacy Policy, &quot;you&quot; and
Expand Down Expand Up @@ -388,8 +388,8 @@ export const PrivacyPolicyPage = () => {
</P>
<P>
Email:{' '}
<a href="mailto:privacy@agentsmith.app" className="underline hover:text-gray-600">
privacy@agentsmith.app
<a href="mailto:privacy@agentsmith.dev" className="underline hover:text-gray-600">
privacy@agentsmith.dev
</a>
</P>
</section>
Expand Down
2 changes: 1 addition & 1 deletion src/page-components/StudioPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const StudioPageHeader = () => (
Making this app as bitchin' as possible is my top priority. Click the Feedback button at
the bottom-right corner at any time, or reach out to{' '}
<a className="underline" href={routes.emails.alex}>
alex@agentsmith.app
alex@agentsmith.dev
</a>{' '}
<br />
Also make sure to ⭐️ the repo on{' '}
Expand Down
2 changes: 1 addition & 1 deletion src/page-components/TermsOfServicePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const TermsOfServicePage = () => {
to and use of the services provided by Chad Syntax LLC (&quot;we&quot;,
&quot;us&quot;, or &quot;our&quot;), including our website{' '}
<a href="https://agentsmith.app/" className="underline hover:text-gray-600">
https://agentsmith.app
https://agentsmith.dev
</a>{' '}
(the &quot;Site&quot;), and any related software, applications, and services
(collectively, the &quot;Services&quot;).
Expand Down
8 changes: 4 additions & 4 deletions src/utils/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ export const routes = {
// },
},
emails: {
enterprise: 'mailto:enterprise@agentsmith.app',
support: 'mailto:support@agentsmith.app',
team: 'mailto:team@agentsmith.app',
alex: 'mailto:alex@agentsmith.app',
enterprise: 'mailto:enterprise@agentsmith.dev',
support: 'mailto:support@agentsmith.dev',
team: 'mailto:team@agentsmith.dev',
alex: 'mailto:alex@agentsmith.dev',
},
} as const;
2 changes: 1 addition & 1 deletion ts-sdk/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
> [!WARNING]
> Agentsmith is currently in alpha. Changes are pushed frequently and may include breaking changes. If you encounter any issues, please reach out to support@agentsmith.app for assistance.
> Agentsmith is currently in alpha. Changes are pushed frequently and may include breaking changes. If you encounter any issues, please reach out to support@agentsmith.dev for assistance.
# @agentsmith-app/sdk

Expand Down