Install
$ agentstack add skill-hyyh-code-agent-skills-bilibili-note ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
bilibili-note
When To Use
Use this skill when the user provides a Bilibili or YouTube URL and wants a local Obsidian Markdown note.
Good fits:
- Generate a Simplified Chinese study note from a video.
- Extract or transcribe video speech.
- Build a structured note with summary, key points, timestamps, resources, transcript, and semantic body.
- Save the result into a local Obsidian vault.
Do not use this skill when:
- The user only wants a one-sentence answer and no local note.
- The source is not a video URL.
- The user wants to publish private transcripts or generated notes into a public repository.
Workflow
- Detect video service and video ID.
- Fetch video metadata.
- Try platform subtitles first.
- If subtitles are unavailable, download audio and run ASR.
- ASR fallback order:
- StepFun StepAudio ASR
- Local Whisper
- Generate a Markdown note using templates.
- Write the note under the configured Obsidian vault.
Modes
Default mode is minimal:
python bilibili_note_v3.py "https://www.bilibili.com/video/BV..."
Full mode:
python bilibili_note_v3.py "https://www.bilibili.com/video/BV..." --full
Full mode adds semantic body, visual index, knowledge links, questions, TODOs, and folded metadata.
Privacy Rules
Never hard-code or commit:
- StepFun API keys
- GitHub tokens
- Local Obsidian vault paths
- Downloaded media
- Generated notes or transcripts
- Runtime logs
Use environment variables:
export BILIBILI_NOTE_VAULT="/path/to/your/obsidian-vault"
export BILIBILI_NOTE_STEPFUN_API_KEY="your-stepfun-key"
Files
- Main entry:
bilibili_note_v3.py - Configuration/cache/resources:
core/ - Network/text/validation helpers:
utils/ - Video service adapters:
video_services/ - ASR providers:
transcription/ - Note analysis and building:
note_processing/ - Templates:
templates/ - Tests:
tests/plus top-level focused tests
Notes
Generated notes are personal study artifacts. Keep them outside public source control unless the user explicitly decides to publish a sanitized note.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: HYYH-code
- Source: HYYH-code/agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.