Anchorify + Continue
Continue is an open-source coding agent for
VS Code and JetBrains. It supports custom slash-commands defined in
~/.continue/config.json. A short shell-command slash-command
publishes the current chat to Anchorify in one keystroke.
Add the slash-command
Edit ~/.continue/config.json and append to slashCommands:
{
"name": "publish",
"description": "Publish the current chat to Anchorify",
"step": "ShellCommandStep",
"params": {
"command": "echo {{{ chat_history }}} | anchorify - --type markdown"
}
}
Then in any chat panel: /publish. Continue feeds the chat history
to anchorify over stdin, you get a URL back as the
slash-command's output.
Access
The default is --access comment --no-index: anyone with the link can
read, but the share isn't listed or indexed. Add --access <tier> (and
--index to list it publicly) to the command string above to change the
per-publish default. To override per-call, pass the flag after the
slash-command:
/publish --access restricted
(Continue passes any trailing arguments to the shell command.)
Install
npm i -g anchorify-cli
anchorify login
Then create an API token at
https://anchorify.io/dashboard and paste it into the
login prompt.