Logs command
Skill datamaker-kr/synapse-claude-marketplace/plugins/synapse-plugin-helper/skills/logs-command
시냅스 제품군 개발을 위한 공용 Claude Marketplace 입니다. 용도 및 목적 별 plugins 를 통해 claude plugins, agents, skills, commands 를 제공합니다.
npx -y skills add datamaker-kr/synapse-claude-marketplace --skill logs-commandAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Run the `synapse-plugin-helper:logs` workflow from the original Claude slash command. Use when the user asks to stream logs from a running Synapse job
SKILL.md
2.4 KB, as published. Nobody here has run it
synapse-plugin-helper:logs Command Workflow
Codex Adaptation
- Treat the user request or explicitly supplied text as the command arguments.
- Use the available Codex file, search, terminal, and clarification capabilities that match the workflow.
- Do not depend on Claude-only slash command variables or tool names.
Stream Synapse Job Logs
View and stream logs from a running or completed Synapse job.
Arguments: the user request or explicit arguments
Workflow
Step 1: Parse Arguments
$1- Job ID (required)--follow- Stream logs in real-time (default: false)--host/--token- Backend auth overrides (optional)
If job ID not provided:
Please provide a job ID. You can find it from:
- `synapse plugin run <action> --mode job` output
- `synapse plugin job get <job-id>` if you already have the ID
Step 2: Fetch Logs
Execute the log streaming command:
# Basic log fetch
synapse plugin job logs [job-id]
# Stream logs in real-time
synapse plugin job logs [job-id] --follow
# With explicit backend auth
synapse plugin job logs [job-id] --host https://api.synapse.example.com --token $SYNAPSE_TOKEN
Step 3: Display Output
Format log output with:
- Timestamps
- Log levels (INFO, WARNING, ERROR, DEBUG)
- Progress indicators if available
- Metrics if recorded
Step 4: Monitor Status
While streaming (--follow):
- Show real-time progress updates
- Display metrics as they're recorded
- Alert on errors or warnings
- Notify when job completes
Log Interpretation
| Level | Meaning |
|---|---|
INFO | Normal operation messages |
WARNING | Non-critical issues |
ERROR | Action failures |
DEBUG | Development details |
Examples
# View logs for a specific job
/synapse-plugin:logs abc123
# Stream logs in real-time
/synapse-plugin:logs abc123 --follow
# Fetch logs once
/synapse-plugin:logs abc123
Troubleshooting
- Job not found: Verify job ID is correct
- No logs available: Job may not have started yet
- Connection lost: Check network and retry with
--follow