31 lines
1.1 KiB
Bash
31 lines
1.1 KiB
Bash
#!/usr/bin/env bash
|
|
# =============================================================================
|
|
# registry.sh - Knowledge Genome Registry
|
|
# Dynamic paths and genome definitions.
|
|
# =============================================================================
|
|
|
|
# Guard against double sourcing
|
|
[[ -n "${_REGISTRY_LOADED:-}" ]] && return
|
|
_REGISTRY_LOADED=1
|
|
|
|
# Resolve project root relative to this file
|
|
PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# Dynamic paths
|
|
WORK_DIR="${HOME}/knowledge-genome-orchestrator"
|
|
KEYS_DIR="${WORK_DIR}/keys"
|
|
TEMPLATES_DIR="${PROJECT_ROOT}/templates"
|
|
LIB_DIR="${PROJECT_ROOT}/lib"
|
|
PROVIDERS_DIR="${PROJECT_ROOT}/providers"
|
|
|
|
# --- GENOME REGISTRY ---
|
|
# Format: "name|description|linked_repo"
|
|
# - linked_repo is OPTIONAL. Leave empty (trailing pipe) for knowledge-only genomes.
|
|
#
|
|
# HOW TO CUSTOMIZE:
|
|
# Replace the placeholder below with your actual genome domains.
|
|
# Example: "genome-work|Work notes and architecture logs|"
|
|
# "genome-finance|Personal finance|user/repo-finance"
|
|
GENOMES=(
|
|
"genome-example|Template genome description for knowledge management|"
|
|
)
|