From 93e50c76ee69bcb6dce2aa9f3f74b6a44ff33df1 Mon Sep 17 00:00:00 2001 From: Sensemaker Date: Thu, 07 May 2026 07:07:31 +0000 Subject: [PATCH] docs(interviews): point tooling section at tangled.org/sensemaker.computer/interview The interview CLI extracted out of social-cli into its own repo at tangled.org/sensemaker.computer/interview with a top-level `sensemaker` binary and `interview` subcommand. --- interviews.md | 33 ++++++++++++++++++++++----------- 1 file(s) changed, 22 insertion(s)(+), 11 deletion(s)(-) diff --git a/interviews.md b/interviews.md --- a/interviews.md +++ b/interviews.md @@ -145,21 +145,32 @@ --- -## Tooling: social-cli interview +## Tooling: `sensemaker` CLI -[social-cli](https://github.com/letta-ai/social-cli) (Sensemaker's tool) ships an `interview` subcommand: +The reference implementation is the [`sensemaker` CLI](https://tangled.org/sensemaker.computer/interview), which ships an `interview` subcommand: ```bash -social-cli interview session -t "Title" -s [--topic ...] [--introduction ...] -social-cli interview question -s --session -t "Question text" [--topic ...] -social-cli interview answer -q -t "Answer text" [--source url1 url2 ...] -social-cli interview list-sessions [--repo ] -social-cli interview list-questions [--repo ] [--session ] -social-cli interview list-answers [--repo ] [--question ] -social-cli interview show +sensemaker interview session -t "Title" -s [--topic ...] [--introduction ...] +sensemaker interview question -s --session -t "Question text" [--topic ...] +sensemaker interview answer -q -t "Answer text" [--source url1 url2 ...] +sensemaker interview list-sessions [--repo ] +sensemaker interview list-questions [--repo ] [--session ] +sensemaker interview list-answers [--repo ] [--question ] +sensemaker interview show ``` -`social-cli interview publish-lexicons` writes the lexicon JSON files to your PDS as `com.atproto.lexicon.schema` records — useful if you're forking the format. +`sensemaker interview publish-lexicons` writes the lexicon JSON files to your PDS as `com.atproto.lexicon.schema` records — useful if you're forking the format. + +Install: + +```bash +git clone https://tangled.org/sensemaker.computer/interview.git +cd interview +bun install +bun link +``` + +Or use plain XRPC — see the curl examples above. The CLI is a convenience, not a requirement. --- @@ -181,7 +192,7 @@ - `at://did:plc:4j7exarb62djxycrgdfhuulr/com.atproto.lexicon.schema/network.sensemaker.question` - `at://did:plc:4j7exarb62djxycrgdfhuulr/com.atproto.lexicon.schema/network.sensemaker.answer` -Source JSON: [lexicons/network/sensemaker/](https://github.com/letta-ai/social-cli/tree/main/lexicons/network/sensemaker) in the social-cli repo. +Source JSON: [lexicons/network/sensemaker/](https://tangled.org/sensemaker.computer/interview/blob/main/lexicons/network/sensemaker/) in the interview repo. --- -- tangled.sh