ClawMax adapter for Senso ingestion. Use this when agents need to ingest files, screenshots, notes, or raw text into Senso using consistent ClawMax naming, foldering, verification, and handoff patterns for hackathon templates.
npx @senso-ai/shipables install maximilien/senso-ingest-clawmaxThis skill wraps the upstream senso-ingest workflow with ClawMax conventions.
Use it when the agent should add evidence into Senso in a way that is easy for other ClawMax agents to find and reuse.
Always use the upstream Senso CLI behavior, but standardize the structure and handoff so downstream agents know what to search for.
SENSO_API_KEY is setsenso CLI is installed--output json --quietWhen creating or uploading content, use a title pattern like:
<template> | <workflow> | <artifact-type> | <short-subject>
Examples:
visual-qa-lab | visual-intake | screenshot | checkout-modal-overlapresearch-desk | evidence-intake | pdf | hackathon-briefcustomer-signal-desk | signal-ingest | note | call-summary-042If a folder is available or can be created, prefer:
ClawMax / <template> / <workflow>
Examples:
ClawMax / Visual QA Lab / visual-intakeClawMax / Real-Time Research Desk / evidence-intakeIf folder creation is too expensive for the current task, keep the title pattern strict and continue.
Choose one:
Before ingesting, decide:
Use the upstream commands:
senso ingest upload <file1> ... --output json --quiet
or:
senso kb upload <file1> ... --folder-id <kb_node_id> --output json --quiet
or raw text:
senso kb create-raw --data '{...}' --output json --quiet
Always verify after ingest:
senso kb sync-status --output json --quiet
If a specific content item was created:
senso content get <content_id> --output json --quiet
Run one search that should find the new content:
senso search "<relevant query>" --max-results 1 --output json --quiet
After successful ingest, report back in this structure:
Example:
Ingested:
- 2 screenshots for Visual QA Lab / visual-intake
Placement:
- Folder: ClawMax / Visual QA Lab / visual-intake
Content IDs:
- cnt_123
- cnt_456
Status:
- processing complete
Suggested downstream query:
- "checkout modal overlap mobile screenshot"
SENSO_API_KEYSenso API key for authenticating CLI commands