Claude Skill
The auralog Claude skill is a Claude Code plugin that installs the auralog SDK in any JavaScript, Python, or Java project. Detects the language, fetches the latest install instructions from the SDK docs, wires the init call, plumbs the API key through .env, and (optionally) verifies a test log lands.
Think of it as the auralog SDK for Claude — the same way
auralog-jsis the SDK for Node, this is the SDK for an LLM acting as your developer.
Source: auralog-ai/claude-skill (Apache 2.0)
Install
Section titled “Install”# 1. Register the marketplaceclaude plugin marketplace add https://github.com/auralog-ai/claude-skill.git
# 2. Install the pluginclaude plugin install auralog@auralogVerify with claude plugin list — you should see auralog 0.1.0 ✓. The skill becomes available as auralog:auralog-sdk-setup in your next Claude Code session.
From inside the project you want to instrument, ask Claude one of:
install auralog in this project
set up auralog logging
add auralog to this Next.js app
Claude will:
- Detect your project’s language and package manager.
- Ask for an ingest key (
aura_*) and project ID from the auralog dashboard. - Optionally ask for a read key (
aura_read_*) to verify the install end-to-end. - Install the SDK, insert the init call, and write your
.env. - (If a read key was provided) fire a test log and confirm it landed via the Read API.
The skill never commits, never pushes, and never writes the literal key into source.
What’s in v0.1.0
Section titled “What’s in v0.1.0”| Languages | JavaScript / TypeScript, Python, Java |
| Package managers | pnpm, yarn, npm, poetry, uv, pdm, pip, Maven, Gradle |
| Source of truth | Fetches install instructions from docs.auralog.ai at runtime, so SDK changes propagate without a skill release |
| Verification | Optional, via the Read API — confirms a test log lands within 30s |
| Safety | Never commits, never hardcodes keys, auto-adds .env to .gitignore before writing secrets |
Out of scope (for now)
Section titled “Out of scope (for now)”- Framework-specific error handlers (Express middleware, FastAPI exception handler, Spring
@ControllerAdvice). Coming as a separate skill. - Uninstall automation. Manual steps in the README.
- Multi-project monorepo scaffolding. The skill instruments one package at a time; for monorepos,
cdinto the target package before invoking.
Release notes
Section titled “Release notes”See the CHANGELOG and GitHub Releases for version history.