Skip to content
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
15dc30c
feat(farcaster): infer fid on signup; authorize signer only when needed
Jhonattan2121 Jan 29, 2026
ca3383d
fix(auth): show Farcaster connect initializer in modal when requested
Jhonattan2121 Jan 29, 2026
25c4054
feat(authenticator): enhance modal behavior and improve initializatio…
Jhonattan2121 Jan 29, 2026
eb5e575
feat(authenticators): skip installation step if no authenticators are…
Jhonattan2121 Jan 29, 2026
5b3ca17
feat(authenticator): add private and public key generation on develop…
Jhonattan2121 Jan 29, 2026
866a91f
feat(farcaster): implement waitForAuthenticatorReady function and ref…
Jhonattan2121 Jan 30, 2026
2fc7883
Merge branch 'canary' into feature/farcaster-fid-inference-lazy-signer
Jhonattan2121 Jan 30, 2026
5ad0efc
fix(auth): use inferred fid return value to skip farcaster prompt
Jhonattan2121 Jan 31, 2026
6d63b93
fix: use inferred FID for editability without signer
Jhonattan2121 Feb 1, 2026
2cfe276
feat: Persist inferred FID links immediately to enable space editing …
Jhonattan2121 Feb 2, 2026
c3e4242
refactor: explicitly import React in ProfileSpace component and updat…
Jhonattan2121 Feb 2, 2026
f16fe20
fix: respect username in Top8 fidget and profile registration
Jhonattan2121 Feb 3, 2026
8e45e01
refactor: reorder imports and apply minor formatting in spaceStore.
Jhonattan2121 Feb 3, 2026
43d091b
feat: Allow the Top8 fidget to display the logged-in Farcaster user's…
Jhonattan2121 Feb 3, 2026
ae58c44
feat: Improve Top8 fidget username input to default to the logged-in …
Jhonattan2121 Feb 3, 2026
9355888
fix(top8): remove hardcoded nounspacetom fallback
Jhonattan2121 Feb 4, 2026
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
13 changes: 0 additions & 13 deletions docs/DOCUMENTATION_OVERVIEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,8 @@ docs/
│ │ ├── OVERVIEW.md # Space architecture and patterns
│ │ ├── SPACE_ARCHITECTURE.md # Detailed space architecture
│ │ ├── PUBLIC_SPACES_PATTERN.md # Public space patterns
│ │ ├── PRIVATE_SPACES.md # Homebase encryption and cross-community
│ │ ├── TAB_OPERATIONS.md # Tab CRUD and staged pattern
│ │ ├── MULTIPLE_LAYOUTS_OVERVIEW.md # Multiple layouts system
│ │ └── LAYOUT_MIGRATION_GUIDE.md # Layout migration guide
│ ├── STORAGE/ # Storage system
│ │ └── SIGNED_FILE_FORMAT.md # SignedFile wrapper format
│ ├── FIDGETS/ # Fidget system
│ │ └── OVERVIEW.md # Fidget architecture
│ ├── THEMES/ # Theme system
Expand All @@ -41,9 +37,6 @@ docs/
│ ├── FARCASTER.md # Farcaster protocol integration
│ └── SUPABASE.md # Supabase integration
├── OPERATIONS/ # Operations and administration
│ └── SCRIPTS.md # Admin scripts (seeding, cleanup, migrations)
├── DEVELOPMENT/ # Development guides
│ ├── AGENTS.md # AI agent instructions
│ ├── DEVELOPMENT_GUIDE.md # Comprehensive development guide
Expand Down Expand Up @@ -73,11 +66,8 @@ docs/
- **SYSTEMS/SPACES/OVERVIEW.md** - Space architecture, public/private patterns, lifecycle
- **SYSTEMS/SPACES/SPACE_ARCHITECTURE.md** - Detailed space architecture
- **SYSTEMS/SPACES/PUBLIC_SPACES_PATTERN.md** - Public space patterns
- **SYSTEMS/SPACES/PRIVATE_SPACES.md** - Homebase encryption and cross-community behavior
- **SYSTEMS/SPACES/TAB_OPERATIONS.md** - Tab CRUD operations and staged/batch pattern
- **SYSTEMS/SPACES/MULTIPLE_LAYOUTS_OVERVIEW.md** - Multiple layouts system
- **SYSTEMS/SPACES/LAYOUT_MIGRATION_GUIDE.md** - Layout migration guide
- **SYSTEMS/STORAGE/SIGNED_FILE_FORMAT.md** - SignedFile wrapper format for storage
- **SYSTEMS/FIDGETS/OVERVIEW.md** - Fidget system, types, development patterns
- **SYSTEMS/THEMES/OVERVIEW.md** - Theme system, customization, CSS variables
- **SYSTEMS/CONFIGURATION/ARCHITECTURE_OVERVIEW.md** - Database-backed configuration system
Expand All @@ -88,9 +78,6 @@ docs/
- **INTEGRATIONS/FARCASTER.md** - Farcaster protocol integration, FID management, social features
- **INTEGRATIONS/SUPABASE.md** - Database, storage, authentication, real-time features

### Operations
- **OPERATIONS/SCRIPTS.md** - Admin scripts for seeding, cleanup, and migrations

### Development
- **DEVELOPMENT/AGENTS.md** - AI agent instructions and guidelines
- **DEVELOPMENT/DEVELOPMENT_GUIDE.md** - Comprehensive development guide
Expand Down
305 changes: 0 additions & 305 deletions docs/OPERATIONS/SCRIPTS.md

This file was deleted.

9 changes: 0 additions & 9 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ Blankspace gives communities a customizable homebase - a central hub where membe

### [Spaces](SYSTEMS/SPACES/OVERVIEW.md)
The pages that make up a community - profiles, tokens, channels, and custom pages.
- [Tab Operations](SYSTEMS/SPACES/TAB_OPERATIONS.md) - How tabs work (create, delete, rename, reorder)
- [Private Spaces](SYSTEMS/SPACES/PRIVATE_SPACES.md) - Homebase encryption

### [Storage](SYSTEMS/STORAGE/SIGNED_FILE_FORMAT.md)
How files are stored with signatures and encryption.

### [Fidgets](SYSTEMS/FIDGETS/OVERVIEW.md)
Community tools: governance widgets, token swaps, feeds, galleries, and more.
Expand All @@ -70,10 +65,6 @@ Custom navigation and pages for communities.
- **[Farcaster](INTEGRATIONS/FARCASTER.md)** - Social protocol
- **[Supabase](INTEGRATIONS/SUPABASE.md)** - Database and storage

## Operations

- **[Admin Scripts](OPERATIONS/SCRIPTS.md)** - Seeding, cleanup, and migration scripts

## Development

- **[Development Guide](DEVELOPMENT/DEVELOPMENT_GUIDE.md)** - Dev guide
Expand Down
Loading