inkbox-all
Index of all Inkbox skills in this repository, including the example skills under `examples/`, with GitHub links and short guidance on when to use each one.
Inkbox Skills Index
Inkbox is an identity layer for AI agents. It gives agents a persistent identity with a real inbox, phone number, and secure vault, so they can send emails, receive replies, answer calls, store credentials, and manage conversations as a single, consistent entity. Learn more at https://inkbox.ai.
Useful links:
- Website: https://inkbox.ai
- LLMs: https://inkbox.ai/llms.txt
- OpenAPI: https://inkbox.ai/api/openapi.json
This skill is just a directory of the other Inkbox skills in this repository. Use it when you want to see the full menu before choosing a more specific skill. In practice, the SDK skills are the main references for application code, agent-self-signup covers the self-registration flow, inkbox-cli covers shell usage, and the example skills under examples/ are prompt templates for browser-capable agents.
Core Skills
-
agent-self-signupGitHub: https://github.com/inkbox-ai/inkbox/blob/main/skills/agent-self-signup/SKILL.md Shared reference for Inkbox agent self-signup, verification, resend-verification, and claim-status flows. -
inkbox-cliGitHub: https://github.com/inkbox-ai/inkbox/blob/main/skills/inkbox-cli/SKILL.md Reference for running the Inkbox CLI (inkbox/@inkbox/cli) for identities, email, phone, text, vault, mailbox, number, signing key, and webhook operations. -
inkbox-openclawGitHub: https://github.com/inkbox-ai/inkbox/blob/main/skills/inkbox-openclaw/SKILL.md OpenClaw-oriented Inkbox skill for TypeScript usage with environment and dependency setup guidance. -
inkbox-pythonGitHub: https://github.com/inkbox-ai/inkbox/blob/main/skills/inkbox-python/SKILL.md Python SDK reference forinkbox, including identities, email, phone, text/SMS, vault, and signing keys. -
inkbox-tsGitHub: https://github.com/inkbox-ai/inkbox/blob/main/skills/inkbox-ts/SKILL.md TypeScript/JavaScript SDK reference for@inkbox/sdk, including identities, email, phone, text/SMS, vault, and signing keys.
Example Skills
-
use-inkbox-browser-useGitHub: https://github.com/inkbox-ai/inkbox/blob/main/examples/use-inkbox-browser-use/SKILL.md Prompt template for an agent that has Browser Use browser automation plus an Inkbox-backed email identity and vault access. -
use-inkbox-kernelGitHub: https://github.com/inkbox-ai/inkbox/blob/main/examples/use-inkbox-kernel/SKILL.md Prompt template for an agent that has a Kernel cloud browser plus an Inkbox-backed email identity.
Related Examples
These example directories are useful references, but they are not standalone skills because they do not contain a SKILL.md file.
-
use-inkbox-cliGitHub: https://github.com/inkbox-ai/inkbox/tree/main/examples/use-inkbox-cli Shell script examples for automating Inkbox from terminal workflows, CI, and agent shell execution using@inkbox/cliplusjq. -
use-inkbox-vaultGitHub: https://github.com/inkbox-ai/inkbox/tree/main/examples/use-inkbox-vault Small Python and TypeScript examples showing how to create a login credential with TOTP, generate codes, and clean up.
How To Choose
- Use
inkbox-pythonwhen writing Python application code against the SDK. - Use
inkbox-tswhen writing TypeScript or JavaScript application code against the SDK. - Use
inkbox-cliwhen the task is operational and best handled with shell commands. - Use
agent-self-signupwhen the agent does not have an API key yet and needs to self-register. - Use
inkbox-openclawwhen the environment is specifically OpenClaw. - Use the example skills when you want a reusable agent prompt rather than SDK integration code.
- Use the related examples when you want runnable scripts or end-to-end sample workflows instead of a reusable skill prompt.