Version 1.5.0

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-06 21:45:32 +00:00
parent 9ca048fb9d
commit 52603f2deb
6 changed files with 109 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
# IGNY8 Technical Documentation
**Version:** 1.3.2
**Last Updated:** January 3, 2026
**Version:** 1.4.0
**Last Updated:** January 6, 2026
**Purpose:** Complete technical reference for the IGNY8 AI content platform
---
@@ -22,6 +22,7 @@
| Look up model fields | [90-REFERENCE/MODELS.md](90-REFERENCE/MODELS.md) |
| See prelaunch checklist | [plans/FINAL-PRELAUNCH.md](plans/FINAL-PRELAUNCH.md) |
| **Understand publishing flow** | [50-DEPLOYMENT/WORDPRESS-INTEGRATION-FLOW.md](50-DEPLOYMENT/WORDPRESS-INTEGRATION-FLOW.md) |
| **AI model architecture (v1.4.0)** | [plans/4th-jan-refactor/final-model-schemas.md](plans/4th-jan-refactor/final-model-schemas.md) |
---
@@ -73,17 +74,18 @@
| [PAGE-REQUIREMENTS.md](30-FRONTEND/PAGE-REQUIREMENTS.md) | Site/sector selector requirements |
| [STORES.md](30-FRONTEND/STORES.md) | Zustand state management |
### Current Page Structure (v1.3.2)
### Current Page Structure (v1.4.0)
```
/ → Dashboard (Home.tsx) - with workflow widgets
├── SETUP
│ /setup/wizard → Onboarding Wizard (SetupWizard.tsx) [NEW v1.3.2]
│ /setup/wizard → Onboarding Wizard (SetupWizard.tsx)
│ /setup/add-keywords → Add Keywords (AddKeywords.tsx)
│ /account/content-settings → Content Settings (ContentSettingsPage.tsx)
│ /sites → Sites List (List.tsx)
│ /sites/:id → Site Dashboard (Dashboard.tsx)
│ /sites/:id/settings → Site Settings (Settings.tsx) - with Publishing tab
│ /sites/:id/settings → Site Settings (Settings.tsx)
│ - Tabs: General, AI Settings (v1.4.0), Integrations, Publishing, Content Types
│ /thinker/prompts → Thinker Prompts (Prompts.tsx) [Admin]
│ /thinker/author-profiles → Author Profiles (AuthorProfiles.tsx) [Admin]
├── WORKFLOW
@@ -96,7 +98,7 @@
│ /writer/review → Review (Review.tsx)
│ /writer/approved → Approved (Approved.tsx)
│ /automation → Automation Dashboard (AutomationPage.tsx)
├── PUBLISHER [NEW v1.3.2]
├── PUBLISHER
│ /publisher/content-calendar → Content Calendar (ContentCalendar.tsx)
├── OPTIONAL MODULES
│ /linker/content → Linker [if enabled]
@@ -109,13 +111,16 @@
│ - Tabs: Plan, Upgrade, History
│ /account/usage → Usage Analytics (UsageAnalyticsPage.tsx)
│ - Tabs: Limits, Credit History, API Activity
│ /settings/integration → AI Models (IntegrationPage.tsx) [Admin]
│ /settings/integration → Integration Settings (IntegrationPage.tsx) [Admin]
├── HELP
│ /help → Help Center (HelpCenter.tsx)
└── INTERNAL
/ui-elements → UI Elements (UIElements.tsx) [Design System Ref]
```
**Removed in v1.4.0:**
- `/settings/ai` - AI Settings page merged into Site Settings AI tab
---
## 40-WORKFLOWS - Cross-Module Flows {#workflows}