mirror of
https://github.com/coleam00/Archon.git
synced 2026-01-03 13:19:05 -05:00
Removing references to Archon "Alpha"
This commit is contained in:
@@ -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)
|
||||
*/
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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(
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user