Install
openclaw skills install @fulcra/fulcra-ingestAutonomously orchestrate the ingestion of 3rd-party data exports (e.g., Spotify, Netflix) from the Fulcra File Store into properly mapped Fulcra Annotations.
openclaw skills install @fulcra/fulcra-ingestThis skill establishes a Librarian-Worker agent pattern to asynchronously process 3rd-party data exports that the user has uploaded to their Fulcra File Store. It profiles the data schemas, creates idempotent Fulcra Annotation mappings, and ingests the data points.
ingest. Do not ask them to map schemas manually unless absolutely necessary for a completely unrecognized format.ingest/ directory for new files or to automatically fetch data from APIs and other sources it can pull directly._meta/ subdirectory and any .md files found in the ingest root to prevent attempting to ingest the agent's own OKF tracking files.description field to store the specific namespace (e.g., com.fulcradynamics.annotation.ingest.spotify) and check the catalog first.DeletedRecord payloads and then re-ingest the data (you can reuse the original record IDs). You can re-import the previously archived file from ingest/_meta/archive/artifact/ to process the new tags. See the references for instructions.delegate_task to dispatch specific files to a Worker subagent so the primary thread isn't blocked.references/fulcra-ingest-cli.md: Contains the necessary fulcra-api CLI commands for checking the catalog, listing files, and creating new data types.references/fulcra-ingest-record-annotations.md: Provides the exact POST endpoint, authentication headers, JSON schemas, and tagging instructions required for ingesting records to Fulcra Annotations.references/fulcra-ingest-source-mapping.md: Outlines the structure and workflow for maintaining the ingest/_meta/source_map.md file, which tracks data lineage, prevents duplicate schemas, handles ingest versioning, and logs archived files.scripts/generate_deterministic_id.py: A python script that takes arbitrary string arguments and returns a consistent, deterministic UUID. Use this to ensure idempotency across ingested records.The Fetcher (API/CLI Extraction) (If applicable)
ingest directory in the Fulcra web dashboard (https://context.fulcradynamics.com/library/files/ingest) so they can easily drop files there if it's more convenient.uvx fulcra-api file upload <local_file> ingest/<filename>.The Librarian (Triage)
uvx fulcra-api file list to check the ingest/ directory. Explicitly ignore the _meta/ folder and any .md files.delegate_task to spin up a Worker subagent and pass the file_id and identified service as context.The Worker (Profiling & Ingestion)
uvx fulcra-api file download <file_id> ./<filename>.references/fulcra-ingest-source-mapping.md. Rely on the source_map.md registry to resolve the target schema ID. If you need to create a new schema for an unseen source, consult references/fulcra-ingest-cli.md for the correct CLI commands and base types.metadata.id using scripts/generate_deterministic_id.py (ensure you pass the source identifier followed by the specific ID fields to prevent cross-service collisions)./ingest/v1/record exactly as specified in references/fulcra-ingest-record-annotations.md.Cleanup & Archive
ingest/ and re-uploading it to ingest/_meta/archive/artifact/. When archiving, prefix the filename with a timestamp in the format YYYYMMDD-HHMMSS.uvx fulcra-api file download ingest/NetflixViewingHistory.csv ./NetflixViewingHistory.csv (if not already downloaded)uvx fulcra-api file upload ./NetflixViewingHistory.csv ingest/_meta/archive/artifact/20260625-143000_NetflixViewingHistory.csvuvx fulcra-api file list ingest/_meta/archive/artifact/ or uvx fulcra-api file stat ingest/_meta/archive/artifact/20260625-143000_NetflixViewingHistory.csv). Do not delete the original data unless you have confirmed the archive copy exists.ingest/ directory (e.g., uvx fulcra-api file delete ingest/NetflixViewingHistory.csv).source_map.md in memory and uploading it back to Fulcra, as instructed in the source mapping reference.https://context.fulcradynamics.com/timeline?mode=week&date=YYYY-MM-DD to view their new data, where YYYY-MM-DD is calculated as six days before the latest recorded_at value in the ingested dataset (this ensures the week view includes the newest data point). Mention that for large datasets, it may take a little time for all records to fully appear on the timeline. Remind the user that if they ever want to change the tagging scheme or fix a mistake, they can simply ask you to correct the data and you will automatically handle the deletion and re-ingestion.