Skip to content

theredstring/redstring

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

880 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redstring App Version GitHub Sponsors

A semantic knowledge graph application that bridges human cognition and machine intelligence through visual node-based interface, W3C semantic web standards, and AI-powered knowledge discovery.

Download the desktop app · Use it online at redstring.io · Learn more at redstring.net

What is Redstring?

Redstring enables you to create, connect, and explore concepts through an intuitive visual interface while maintaining full semantic web standards compliance. It's designed for the intersection of personal knowledge management and collective intelligence—where individual thinking becomes collaborative understanding through RDF-based linking.

Core Philosophy: Everything is connected. Most things can be generalized as a community of components and relations. Redstring makes these connections visible, explorable, and shareable.

Key Features

Visual Knowledge Graphs

  • Node-based Interface: Drag-and-drop concept creation and connection
  • Hierarchical Organization: Nodes can expand to reveal internal definition graphs
  • Contextual Definitions: Same concept can have different meanings in different contexts
  • Visual Abstractions: Multi-dimensional abstraction chains (specific → general)

Semantic Web Integration

  • W3C Standards Compliant: Full RDF, OWL, and JSON-LD support
  • Dual-Format Storage: Native Redstring format + RDF export for interoperability
  • External Knowledge Sources: Direct integration with Wikidata, DBpedia, and Wikipedia
  • Property-Based Discovery: Find related concepts through semantic relationships
  • Cross-Domain Linking: Connect knowledge across different sources and domains

Local-First Storage Architecture

  • Multi-Storage Sync: Save to all enabled storage locations simultaneously
    • Local .redstring files (first-class, independent storage)
    • Git repositories (GitHub/Gitea/GitLab - opt-in collaboration)
    • Browser storage (universal fallback/cache)
  • Source of Truth: Choose which storage drives your UI (matters for loading, not saving)
  • Privacy by Design: Git/GitHub cannot access data unless you explicitly enable it
  • Resilient: If one storage method fails, others still succeed

Git Federation

  • Real-Time Sync: Sub-5-second auto-commits to Git repositories
  • Hot-Swappable Providers: Switch between GitHub, GitLab, Gitea, or self-hosted
  • Multi-Provider Redundancy: Backup to multiple Git providers simultaneously
  • Instant Migration: Move your entire semantic space between providers in minutes
  • Version History: Complete audit trail using Git's native capabilities
  • Conflict Resolution: Git merge capabilities for collaborative knowledge building

The Wizard (AI Agent)

  • Mystical Guide: The Wizard is Redstring's AI agent — a guide through your knowledge graph with first-class access to create, explore, and transform your semantic space
  • 42 Specialized Tools: Comprehensive tool suite spanning graph creation, semantic web discovery, tabular data import, and more
  • Model Context Protocol (MCP): Full MCP server for integration with external AI clients
  • 3-Tier Dynamic Tool Selection: Core tools always available, advanced tools surface contextually based on graph state and user intent
  • Transparent Operations: Full visibility into AI tool calls and actions

Format Versioning

  • Automatic Migration: Files from older versions (v1.0.0, v2.0.0) auto-upgrade to v3.0.0
  • Version Validation: Clear error messages for incompatible formats
  • User Feedback: Migration progress displayed during import
  • Data Protection: Comprehensive validation before any data changes

Getting Started for Humans

Redstring is a desktop-first app. The fastest path is the Electron build.

Prerequisites

  • Node.js 18+ and npm

Electron (recommended)

git clone https://github.com/yourusername/redstring.git
cd redstring
npm install
npm run electron:dev

The app opens directly. Create a universe from the header menu, start adding nodes, and connect them on the canvas. The Wizard (AI assistant) is available inside the app once you provide an API key in settings.

Browser (web dev server)

npm install
npm run dev

Open http://localhost:4001. File save uses the browser's File System Access API — you'll be prompted to grant access to a folder the first time you save.

Full Stack (with OAuth and server features)

npm run dev:full   # frontend + OAuth server + main server in one terminal

Getting Started for AIs

Redstring has a headless stack — the same Zustand store that powers the GUI runs in Node, driven by a CLI, HTTP API, or MCP server. Start with HEADLESS.md for the complete reference. The short version:

git clone https://github.com/yourusername/redstring.git
cd redstring
npm install

# Create a workspace and your first universe
node cli/redstring.js init --workspace ~/redstring --name "My Universe"

# Build a graph
GID=$(node cli/redstring.js --json graph create "Concepts" | jq -r .id)
node cli/redstring.js node create "Idea A" --graph "$GID"
node cli/redstring.js node create "Idea B" --graph "$GID"
node cli/redstring.js edge create "Idea A" "Idea B" --graph "$GID" --type "leads to"

# Apply a batch of mutations from a JSON spec
node cli/redstring.js apply mutations.json

# See the full store state
node cli/redstring.js state --json

If the Electron app is already open

The CLI auto-detects the running wizard on port 3001 and routes mutations through the live bridge — the canvas updates in real time. Drop --universe so the CLI uses the bridge instead of writing to the file directly:

# Routes through the bridge → canvas updates live
node cli/redstring.js apply mutations.json

# Forces direct file mode (use only when the app is closed)
node cli/redstring.js apply mutations.json --universe ~/path/to/universe.redstring

MCP

The MCP server exposes the full Wizard tool suite to any MCP-compatible AI client:

node redstring-mcp-server.js

See HEADLESS.md for HTTP endpoints, workspace management, GitHub-backed universes, and the full architecture.

Core Concepts

Universes

A Universe is a complete workspace containing your knowledge graph. Each universe is independent with its own nodes, edges, and storage configuration.

  • Create multiple universes for different projects or domains
  • Switch between universes instantly
  • Configure storage options per universe (local file, Git, browser)

Nodes (Concepts)

Nodes represent concepts, entities, or ideas in your knowledge graph.

  • Prototypes: The semantic concept (e.g., "Climate Policy")
  • Instances: Specific occurrences of a concept in different graphs
  • Expandable: Nodes can contain internal definition graphs
  • Contextual: Same node can have different definitions in different contexts

Edges (Relationships)

Edges connect nodes and represent relationships between concepts.

  • Directional: Specify arrow direction (one-way or bidirectional)
  • Typed: Use connection type nodes to categorize relationships
  • Semantic: Edges export as RDF triples for semantic web integration

Graphs

Graphs are collections of nodes and edges that form coherent knowledge structures.

  • Hierarchical: Graphs can define nodes, which can contain more graphs
  • Spatial: Each graph has its own 2D canvas space
  • Composable: Build complex knowledge structures from simpler components

Abstraction Chains

Abstraction chains represent generalization hierarchies across multiple dimensions.

  • Specific → General relationships (e.g., "Lawyer" → "Professional" → "Person")
  • Multiple dimensions (e.g., by profession, by species, by social role)
  • Exports as rdfs:subClassOf relationships in RDF

Storage & Federation

Local-First Architecture

Redstring is designed as a local-first application where your data lives on your machine by default.

Storage Options (Mix and Match)

  1. Local .redstring Files

    • First-class storage option
    • Works completely independently without Git
    • Use File System Access API to save directly to your filesystem
    • Perfect for personal knowledge management
  2. Git Repository Sync

    • Opt-in collaboration and backup
    • Supports GitHub, GitLab, Gitea, or self-hosted Git
    • Real-time sync with sub-5-second auto-commits
    • Enable only when you want to collaborate or backup to Git
  3. Browser Storage (IndexedDB)

    • Universal fallback and cache
    • Always enabled for offline access
    • Synchronizes with other storage options

Multi-Storage Sync

When you save, Redstring saves to ALL enabled storage locations to keep them in sync:

Your Edit → Save
    ↓
    ├─→ Local File (if enabled) ✓
    ├─→ Git Repo (if enabled)   ✓
    └─→ Browser Cache (always)  ✓

Source of Truth only matters when loading data—it determines which storage to trust if they differ.

Git Federation

Git federation enables collaborative knowledge building across teams and organizations.

Key Features

  • Provider Abstraction: Unified interface for GitHub, GitLab, Gitea, etc.
  • Authentication: OAuth for GitHub, token auth for self-hosted
  • Repository Structure: Standard layout with universes/<slug>/<file>.redstring
  • Conflict Handling: Git merge capabilities with exponential backoff on conflicts
  • Rate Limiting: Intelligent batching and circuit breaker protection

Typical Workflow

  1. Create or Open Universe

    • Start with local file storage
    • Build your knowledge graph
  2. Link Git Repository (Optional)

    • Connect to GitHub/GitLab repository
    • Enable Git sync for backup and collaboration
    • Data stays local, with copies pushed to Git
  3. Collaborate

    • Team members clone repository
    • Multiple people can work simultaneously
    • Conflicts resolved through Git merge
  4. Switch Providers

    • Change Git provider anytime
    • Export to new repository
    • No data loss or migration complexity

Solid Pod Federation (Experimental)

Redstring supports experimental integration with Solid Pods for decentralized storage.

  • WebID Authentication: Connect to any Solid Pod provider
  • RDF Storage: Store cognitive spaces as RDF/Turtle files
  • Cross-Pod References: Link concepts across different users' Pods
  • Access Control: Granular permissions using Solid protocols

Note: Solid integration is experimental. Git federation is recommended for production use.

The Wizard

The Wizard is Redstring's mystical guide through your knowledge graph — an AI agent that can create, explore, and transform your semantic space through natural conversation. With first-class access to 42 specialized tools organized in a 3-tier dynamic selection system, it works alongside you: core tools are always available, while advanced tools surface contextually based on your graph state and what you're asking about.

Wizard Tools

Graph Creation & Navigation

  • createGraph - Create a new graph workspace
  • createPopulatedGraph - Create a new graph with nodes, edges, and groups in one step
  • expandGraph - Add nodes, edges, and groups to an existing graph
  • readGraph - Read all nodes, edges, and groups from the active graph
  • switchToGraph - Navigate to a different graph
  • inspectWorkspace - Quick comprehensive overview of entire workspace
  • sketchGraph - Sketch a graph structure in lightweight shorthand before building it

Node Operations

  • createNode - Create a single node in the active or target graph
  • updateNode - Update an existing node's properties (name, description, color)
  • deleteNode - Remove a node and its connections by name
  • selectNode - Select and highlight a node on the canvas
  • search - Search for nodes or connections by keyword, or list all
  • setNodeType - Set or clear a node's type/category (auto-creates type node)
  • inspectPrototype - Get detailed properties of a node prototype and find all instances

Edge Operations

  • createEdge - Connect two existing nodes by name
  • updateEdge - Update properties of an existing connection
  • deleteEdge - Remove a connection between nodes
  • replaceEdges - Bulk-replace or update connections between existing nodes

Groups

  • createGroup - Create a visual group to organize nodes together
  • updateGroup - Update a group (rename, change color, add/remove members)
  • deleteGroup - Delete a group (member nodes are kept)
  • thingGroup - Convert a Group into a Thing-Group, or collapse it back to a node

Definitions & Structure

  • populateDefinitionGraph - Create and populate a definition graph for a node in one step
  • manageDefinitions - List or remove definition graphs for a node
  • decomposeNode - Unpack a node into its definition graph contents as a Thing-Group
  • condenseToNode - Package selected nodes into a new concept with a definition graph
  • abstractionChain - Read, add to, or remove from a node's abstraction chains

Semantic Web Discovery

  • discoverOrbit - Discover linked-data connections from Wikidata/DBpedia (returns 4 quality rings)
  • semanticSearch - Search Wikidata/DBpedia for entity data (enrich or related mode)
  • materializeSemanticEntities - Turn semantic web discoveries into Redstring nodes/edges
  • importKnowledgeCluster - BFS crawl of Wikidata/DBpedia linked data around a seed entity
  • querySparql - Execute raw SPARQL SELECT queries against Wikidata/DBpedia/Schema.org

Enrichment & Styling

  • enrichFromWikipedia - Pull Wikipedia data for a node (image, description, link)
  • themeGraph - Re-color all nodes and connections based on a palette

Duplicate Management

  • findDuplicates - Find potential duplicate nodes by name similarity
  • mergeNodes - Merge two nodes into one (primary survives, secondary absorbed)
  • mergeGraphs - Find and merge duplicate nodes between two graphs

Tabular Data Import

  • analyzeTabularData - Analyze attached tabular file (CSV, TSV, XLSX, JSON) structure
  • importTabularAsGraph - Import tabular data as a graph (entity lists, edge lists, adjacency matrices, relational data)

Planning & Interaction

  • planTask - Create or update a step-by-step task plan for complex operations
  • askMultipleChoice - Ask the user a multiple-choice question
  • listTools - List all available tools with descriptions

Tool Selection Strategy

The Wizard uses 3-tier dynamic filtering so conversations stay focused:

  • Tier 1 (Always Available): Core creation, search, navigation, and planning tools (~19 tools)
  • Tier 2 (Context-Triggered): Groups, definitions, merging, and styling tools — included when your graph has relevant content
  • Tier 3 (Keyword-Triggered): Semantic web discovery and tabular import tools — included when your message mentions related concepts

Tool Call Flow

  1. You speak: Describe what you want in natural language
  2. Wizard plans: The agent selects and sequences tool calls
  3. MCP Server: Receives tool calls and queues actions
  4. Bridge execution: Frontend executes actions in the Redstring store
  5. UI updates: Your canvas reflects changes in real-time

All steps are logged for full transparency.

Setting Up the Wizard

# Run the connection wizard
npm run ai-wizard

# Or test AI integration
npm run test:ai:all

See COMPREHENSIVE_AI_TOOLS.md for complete documentation.

CLI + Canvas Coworking

The CLI (cli/redstring.js) can drive the live canvas while the app is open. When Electron (or any browser session with the wizard running) is detected on port 3001, the CLI auto-routes mutations through the bridge instead of writing directly to the file — changes land in the live store and the canvas updates immediately.

# With Electron open, drop --universe so the CLI uses the bridge
node cli/redstring.js apply my-mutations.json

# Without the app open, --universe targets the file directly
node cli/redstring.js apply my-mutations.json --universe ~/path/to/universe.redstring

See HEADLESS.md for the full CLI reference and coworking details.

Semantic Web Features

Enhanced Semantic Search

Redstring integrates multiple semantic web sources for comprehensive knowledge discovery:

// Example: Search for related concepts
const results = await enhancedSemanticSearch('LittleBigPlanet', {
  timeout: 25000,
  limit: 50,
  includeWikipedia: true
});

// Returns 40-70 related entities from:
// - DBpedia (70%): Property-based relationships, categories
// - Wikidata (20%): Fuzzy search, SPARQL queries
// - Wikipedia (10%): Article summaries, links

Search Strategies

  1. Direct Entity Search: Exact and fuzzy matching across sources
  2. Property-Based Search: Find entities through shared properties
  3. Category-Based Search: Discover concepts in related categories
  4. Relationship Traversal: Follow semantic connections between entities

RDF Export/Import

Export your knowledge graph as standard RDF for semantic web integration:

// Export to RDF/Turtle
const rdfData = await exportToRDF(graphState);

// Import from RDF sources
const graphData = await importFromRDF(turtleString);

Dual-Format Approach:

  • Native Redstring format for application functionality
  • RDF statements for semantic web interoperability
  • Both formats maintained in .redstring files

Cross-Domain Linking

Link concepts across different knowledge bases using standard RDF:

# In alice's knowledge graph
@prefix alice: <https://alice.github.io/semantic/vocabulary/> .
@prefix bob: <https://bob.gitlab.com/knowledge/concepts/> .

alice:ClimatePolicy 
    alice:influences bob:EconomicGrowth ;
    alice:derivedFrom <https://dbpedia.org/resource/Climate_change_policy> .

File Format

Redstring Format (.redstring)

Redstring uses a JSON-based format with JSON-LD context for semantic web compatibility.

v4.0.0 (current, June 2026) introduced the prototypeSpace / spatialGraphs top-level shape: node prototypes live in a shared namespace and each graph is a named spatial context that owns its instances and edges.

{
  "@context": "https://redstring.net/contexts/v1.jsonld",
  "@type": "redstring:CognitiveSpace",
  "format": "redstring-v4.0.0",
  "metadata": {
    "version": "4.0.0",
    "created": "2024-01-01T00:00:00Z",
    "modified": "2024-01-01T12:00:00Z"
  },
  "prototypeSpace": {
    "nodePrototypes": { /* shared node type definitions */ }
  },
  "spatialGraphs": {
    "graph-id": {
      "nodes": { /* positioned instances of prototypes */ },
      "edges": { /* edges scoped to this graph */ }
    }
  },
  "userInterface": { /* UI state */ }
}

Edges are embedded inside each spatialGraph entry (they were in a global relationships section in v3). Each edge carries both native instance IDs and an RDF statement for semantic web interoperability:

{
  "edge-id": {
    "sourceId": "instance-a",
    "destinationId": "instance-b",
    "directionality": { "arrowsToward": [] },
    "definitionNodeIds": ["conn-leads-to"],
    "rdfStatement": {
      "subject": { "@id": "node:prototype-a" },
      "predicate": { "@id": "node:relationship-type" },
      "object": { "@id": "node:prototype-b" }
    }
  }
}

Version Support

  • Current: v4.0.0 — prototypeSpace/spatialGraphs shape, graph-scoped edges, SKOS+PROV alignment (breaking change from v3)
  • Supported: v1.0.0, v2.0.0-semantic, v3.0.0 (all auto-migrated on open)
  • Format History: Metadata tracks migrations and applied changes

See redstring-format-spec.md for the complete specification.

Development

Project Structure

redstring/
├── src/
│   ├── components/        # React UI components
│   ├── store/            # Zustand state management
│   ├── services/         # Core services
│   │   ├── universeManager.js      # Universe orchestration
│   │   ├── gitSyncEngine.js        # Git synchronization
│   │   ├── semanticWebQuery.js     # Semantic search
│   │   └── solidAuth.js            # Solid Pod integration
│   ├── formats/          # Import/export formats
│   │   ├── redstringFormat.js      # Native format
│   │   └── rdfExport.js            # RDF serialization
│   └── ...
├── deployment/
│   ├── app-semantic-server.js      # Production server
│   ├── docker/                     # Docker configs
│   └── gcp/                        # Google Cloud deployment
├── test/
│   ├── formats/          # Format validation tests
│   └── ai/              # AI integration tests
├── docs/                # Additional documentation
└── universes/           # Local universe storage

Key Services

Universe Management

  • universeManager.js: Orchestrates universes, loading, saving, switching
  • universeBackend.js: Façade for UI components
  • gitFederationService.js: Git repository management and status

Synchronization

  • gitSyncEngine.js: Background sync with batching and conflict resolution
  • gitNativeProvider.js: Provider abstraction (GitHub, GitLab, Gitea)
  • persistentAuth.js: Authentication and token management

Semantic Web

  • semanticWebQuery.js: Multi-source semantic search
  • knowledgeFederation.js: Cross-domain knowledge linking
  • solidAuth.js / solidData.js: Solid Pod integration

Testing

# Run all tests
npm test

# Format tests
npm run test:format
npm run test:consistency
npm run test:roundtrip

# AI integration tests
npm run test:ai:all
npm run test:mcp
npm run test:bridge

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Run tests (npm test)
  5. Commit with clear messages
  6. Push to your fork
  7. Open a Pull Request

Note: This is significant work. Test your changes thoroughly and verify they work before submitting.

Deployment

Local Development

# Quick start
npm run dev

# Full stack with OAuth and main server
npm run dev:full

Docker

# Build and run
npm run prod:docker

# Or use docker-compose
npm run prod:compose

Google Cloud Platform

# Setup GCP project
npm run setup:gcp

# Deploy to production
npm run deploy:gcp:prod

# Deploy to test environment
npm run deploy:gcp:test

GCP Architecture

Frontend (Port 4000) → Main Server → OAuth Server (Port 3002) → GitHub API
                          ↓
                    Cloud Run Service
                          ↓
                    Secret Manager (OAuth credentials)

Required Secrets

Store in Google Cloud Secret Manager:

  • github-client-id: GitHub OAuth app client ID
  • github-client-secret: GitHub OAuth app client secret
  • github-app-private-key: GitHub App private key (optional)

OAuth Configuration

GitHub OAuth App Settings:

  • Homepage URL: https://your-app.run.app
  • Callback URL: https://your-app.run.app/oauth/callback

GitHub App Settings (optional, for enhanced features):

  • Webhook URL: https://your-app.run.app/api/github/webhook
  • Permissions: Repository contents (read/write)

Environment Variables

Create .env file for local development:

# GitHub OAuth
GITHUB_CLIENT_ID=your_oauth_client_id
GITHUB_CLIENT_SECRET=your_oauth_client_secret

# GitHub App (optional)
GITHUB_APP_ID=your_app_id
GITHUB_APP_CLIENT_ID=your_app_client_id
GITHUB_APP_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----
...your private key...
-----END RSA PRIVATE KEY-----"

# Server Configuration
NODE_ENV=development
PORT=4000
OAUTH_PORT=3002

Documentation

Core Documentation

  • aiinstructions.txt - Project overview and recent enhancements
  • redstring-format-spec.md - File format specification
  • HEADLESS.md - Run and drive Redstring without a browser (CLI, workspaces, universes, GitHub) — start here if you're an AI that cloned this repo
  • SEMANTIC_WEB_INTEGRATION.md - Semantic web features and RDF integration
  • COMPREHENSIVE_AI_TOOLS.md - Wizard tools and MCP integration
  • GIT_FEDERATION.md - Git federation architecture and workflows

Guides

  • LOCAL_DEVELOPMENT.md - Local setup and testing
  • DEPLOYMENT.md - Production deployment guide
  • REDSTRING_FORMAT_VERSIONING.md - Format versioning system
  • DYNAMIC_FEDERATION_GUIDE.md - Dynamic federation and cross-domain linking

Troubleshooting

  • TROUBLESHOOTING.md - Common issues and solutions
  • AI_INTEGRATION_TROUBLESHOOTING.md - Wizard and AI tool debugging
  • AUTH_401_FIX.md - OAuth authentication issues

Architecture Highlights

Local-First Design

  • Your data lives on your machine by default
  • Git/cloud sync is opt-in, not required
  • Multiple storage options work together, not exclusively
  • Privacy by design: no external access without explicit permission

Semantic Web Integration

  • W3C standards compliant (RDF, OWL, JSON-LD)
  • Dual-format storage (native + semantic)
  • Cross-domain linking via RDF
  • Integration with major knowledge bases (Wikidata, DBpedia, Wikipedia)

Git-Native Federation

  • Real-time sync with background commits
  • Hot-swappable providers (GitHub, GitLab, Gitea)
  • Multi-provider redundancy and backup
  • Version history and conflict resolution via Git

The Wizard (AI-First Design)

  • Built-in AI agent with 42 specialized tools
  • 3-tier dynamic tool selection based on context
  • Model Context Protocol (MCP) for external AI client integration
  • Transparent operation logging and full tool call visibility

Performance

Semantic Search

  • DBpedia search: ~2-5 seconds, 30-50 entities
  • Wikidata search: ~1-3 seconds, 10-20 entities
  • Wikipedia search: ~1-2 seconds, 1-5 articles
  • Total: ~5-10 seconds, 40-70 total entities

Git Sync

  • Auto-commit interval: 20-30 seconds (depending on auth method)
  • Conflict retry: Exponential backoff with fresh SHA
  • Circuit breaker: Opens after excessive API calls, resumes after cooldown

UI

  • Instant local updates (sub-100ms)
  • Debounced drag operations to reduce churn
  • Background persistence without blocking UI

Philosophy

Redstring is built on the belief of holism, that everything is connected. Understanding the Universe lives in the relationships between concepts, the contexts that shape meaning, and the communities that create compositions when they work together.

Redstring is infrastructure for distributed cognition, where individual data management meets collective intelligence through the power of a decentralized design pattern where you own the data. It is a shared knowledge commons built on top of the Semantic Web.

Key Principles

  1. User Sovereignty: Your data, your control, your infrastructure
  2. Semantic Standards: W3C compliance for true interoperability
  3. Local-First: Work offline, sync when you choose
  4. Privacy by Design: No external access without explicit permission
  5. Community Intelligence: Individual graphs compose into larger understanding

License

MIT License - See LICENSE file for details.

Support

Credits

An endless thank you to everyone who has provided input, patience, and support.

  • Grant Eubanks

Built with:

  • The help of nearly every mainstream LLM Since GPT 3
  • React & Vite
  • Zustand (state management)
  • RDF.js & JSON-LD
  • Model Context Protocol (MCP)
  • Solid Project
  • Express.js
  • And many other amazing open source projects

About

Redstring is a semantic knowledge graph application that bridges human and machine intelligences through a recursive graph interface built on W3C Semantic Web standards with robust knowledge discovery. It uses RDF, OWL, and JSON-LD for decentralized, federated ontology creation like you've never seen before.

Topics

Resources

License

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors