Removing references to Archon "Alpha"

This commit is contained in:
Cole Medin
2025-09-06 14:51:02 -05:00
parent 01903e5c63
commit 012d2c58ed
21 changed files with 44 additions and 47 deletions

View File

@@ -25,14 +25,14 @@ module.exports = {
plugins: ['react-refresh'],
rules: {
/**
* LINTING STRATEGY FOR ALPHA DEVELOPMENT:
* LINTING STRATEGY FOR BETA DEVELOPMENT:
*
* Development: Warnings don't block local development, allowing rapid iteration
* CI/PR: Run with --max-warnings 0 to treat warnings as errors before merge
*
* Philosophy:
* - Strict typing where it helps AI assistants (Claude Code, Copilot, etc.)
* - Pragmatic flexibility for alpha-stage rapid development
* - Pragmatic flexibility for beta-stage rapid development
* - Console.log allowed locally but caught in CI
* - Progressive enhancement: stricter rules in /features (new code) vs /components (legacy)
*/

View File

@@ -46,7 +46,6 @@ export const ProviderStep = ({ onSaved, onSkip }: ProviderStepProps) => {
localStorage.setItem("onboardingDismissed", "true");
onSaved();
} catch (error) {
// Log error for debugging per alpha principles
const errorMessage =
error instanceof Error ? error.message : "Unknown error";
console.error("Failed to save API key:", error);

View File

@@ -1,7 +1,5 @@
/**
* Task ordering utilities that ensure integer precision
*
* Following alpha principles: detailed errors and no silent failures
*/
import type { Task } from "../types";

View File

@@ -82,7 +82,7 @@ export class FeatureErrorBoundary extends Component<Props, State> {
An error occurred in this feature. The error has been logged for investigation.
</p>
{/* Show detailed error in alpha/development (following CLAUDE.md principles) */}
{/* Show detailed error in development */}
{isDevelopment && error && (
<div
className={cn(

View File

@@ -204,8 +204,7 @@ export const SettingsPage = () => {
>
<div className="space-y-4">
<p className="text-sm text-gray-600 dark:text-gray-400">
Found a bug or issue? Report it to help improve Archon V2
Alpha.
Found a bug or issue? Report it to help improve Archon Beta.
</p>
<div className="flex justify-start">
<BugReportButton variant="secondary" size="md">

View File

@@ -1,5 +1,5 @@
/**
* Bug Report Service for Archon V2 Alpha
* Bug Report Service for Archon Beta
*
* Handles automatic context collection and GitHub issue creation for bug reports.
*/