Skip to content

Commit 79914f0

Browse files
committed
fix(agents.md): remove project structures
1 parent 20a3b0a commit 79914f0

1 file changed

Lines changed: 0 additions & 66 deletions

File tree

AGENTS.md

Lines changed: 0 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -134,20 +134,6 @@ Only commit when all checks pass. Fix any issues before proceeding.
134134

135135
**IMPORTANT**: Any LLM contributing to this project must ensure that all ESLint, TypeScript, and test errors are fixed, even if they are outside the immediate scope of the task.
136136

137-
## Project Structure
138-
139-
```
140-
apps/
141-
api/ # Express.js backend (port 3001) - for developers building custom interfaces
142-
web/ # React PWA frontend - uses OPFS for local-first storage
143-
landing/ # Fluxby landing page (port 5177) - marketing & docs
144-
tauri/ # Tauri desktop app wrapper - uses local SQLite
145-
packages/
146-
shared/ # Shared TypeScript types & utilities
147-
database/ # Universal SQLite layer (OPFS/Tauri/Node adapters)
148-
core/ # Business logic (CSV parsing, categorization, analytics)
149-
```
150-
151137
## Architecture Overview
152138

153139
### Local-First Design (OPFS)
@@ -247,24 +233,6 @@ With transactions, all operations share a single commit/sync, dramatically impro
247233

248234
This repository uses the **Nexus multi-agent orchestration system** for complex planning, execution, and review workflows.
249235

250-
### System Overview
251-
252-
```
253-
.nexus/ # Project-specific orchestration files
254-
├── features/ # Feature planning and tracking
255-
├── memory/ # Agent preferences and learned behaviors
256-
├── toc.md # Master feature index
257-
├── tmp/ # Temporary files (gitignored)
258-
└── logs/ # Execution logs
259-
260-
.github/
261-
├── agents/ # Agent definitions (12 specialized agents)
262-
├── prompts/ # Workflow prompts (Nexus workflows)
263-
└── skills/ # Domain-specific knowledge (16 skills)
264-
265-
.nexusrc # Points to central Nexus template repo
266-
```
267-
268236
### The Orchestrator (@Nexus)
269237

270238
The **@Nexus** agent is the orchestrator that:
@@ -505,40 +473,6 @@ Developer documentation is available on the landing page (`apps/landing`) at `/d
505473
3. **Changed Response Formats**: Update the code examples and response types
506474
4. **New Query Parameters**: Document in the parameter tables
507475

508-
### Docs Structure
509-
510-
```
511-
apps/landing/src/
512-
├── pages/docs/ # Developer documentation pages
513-
│ ├── DocsIntroduction.tsx
514-
│ ├── DocsAuthentication.tsx
515-
│ ├── DocsProfiles.tsx
516-
│ ├── DocsErrors.tsx
517-
│ ├── DocsAccounts.tsx
518-
│ ├── DocsTransactions.tsx
519-
│ ├── DocsCategories.tsx
520-
│ ├── DocsBudgets.tsx
521-
│ ├── DocsAnalytics.tsx
522-
│ └── DocsAddressBook.tsx
523-
├── pages/help/ # Help Center pages (end users)
524-
│ ├── HelpHome.tsx
525-
│ ├── HelpBankConnection.tsx
526-
│ ├── HelpBudgeting.tsx
527-
│ ├── HelpPrivacy.tsx
528-
│ └── HelpDevIntro.tsx
529-
├── components/docs/ # Shared docs components
530-
│ ├── DocsLayout.tsx
531-
│ ├── DocsSidebar.tsx
532-
│ └── CodeBlock.tsx
533-
├── components/help/ # Help Center components
534-
│ ├── HelpLayout.tsx
535-
│ ├── HelpSidebar.tsx
536-
│ └── ScreenshotPlaceholder.tsx
537-
└── lib/i18n/ # Translations (NL + EN)
538-
├── nl.ts
539-
└── en.ts
540-
```
541-
542476
## Help Center Documentation
543477

544478
The Help Center is available at `/help` and contains documentation for end users.

0 commit comments

Comments
 (0)