Skip to content

Ecosystem

projio is the workspace and orchestration layer for a small documentation and knowledge-tool ecosystem.

The split is deliberate:

  • projio owns project-local scaffolding, docs-site workflows, and MCP exposure
  • indexio owns semantic search and chat-backed retrieval
  • biblio owns bibliography ingestion, enrichment, and bibliography-first sites
  • notio owns notes and structured project logs
  • codio owns code-library and code-context discovery

Role diagram

flowchart TD
    U[Project repository] --> P[projio]

    P --> S[Scaffolding and repo conventions]
    P --> D[Site workflows and deployment glue]
    P --> M[MCP server and tool surface]

    M --> I[indexio]
    M --> B[biblio]
    M --> N[notio]
    M --> C[codio]

    I --> IR[Semantic search and chatbot retrieval]
    B --> BR[Bibliography workspace and publication]
    N --> NR[Notes, logs, and project memory]
    C --> CR[Code discovery and reuse intelligence]

    B -. registers sources .-> I
    N -. registers sources .-> I
    C -. registers sources .-> I

projio is the coordinator. The sibling packages stay focused on their own domain, and indexio acts as shared retrieval infrastructure where cross-package search is needed.

GitHub Pages placeholders

Mental model

Use projio when you need a repo-wide entrypoint that ties those tools together. Use the tool-specific docs when you are working inside one subsystem in depth.