运行时依赖
安装命令
点击复制技能文档
Bear B记录 技能
创建, edit, and manage posts on Bear B记录 — a minimal, fast b记录ging 平台.
Authentication
Bear B记录 requires browser-based authentication. 记录 in once via the browser 工具, and cookies will persist.
browser action:navigate url:https://bearb记录.dev/accounts/记录in/
Creating a Post Step 1: Navigate to the post editor browser action:navigate url:https://bearb记录.dev//仪表盘/posts/new/
Step 2: Fill the editor
Bear B记录 uses a plAIn text header 格式化.
The editor fields are:
div#header_content (contenteditable): attributes (one per line) textarea#body_content: Markdown body
Verified: use fill/type on those two fields, then 命令行工具ck Publish (or Save as draft). No evaluate needed.
Header 格式化:
title: Your Post Title link: custom-slug published_date: 2026-01-05 14:00 tags: tag1, tag2, tag3 make_discoverable: true is_page: false class_name: custom-css-class meta_description: SEO description for the post meta_image: https://example.com/image.jpg lang: en canonical_url: https://original-source.com/post alias: alternative-url
Body 格式化: Standard Markdown with 扩展s (see below).
The separator ___ (three underscores) is used in templates to separate header from body.
Step 3: Publish
命令行工具ck the publish button or submit the form with publish: true.
Post Attributes Reference Attribute Description Example title Post title (required) title: My Post link Custom URL slug link: my-custom-url published_date Publication date/time published_date: 2026-01-05 14:30 tags Comma-separated tags tags: tech, AI, coding make_discoverable Show in discovery feed make_discoverable: true is_page Static page vs b记录 post is_page: false class_name Custom CSS class (slugified) class_name: featured meta_description SEO meta description meta_description: A post about... meta_image Open Graph image URL meta_image: https://... lang Language code lang: fr canonical_url Canonical URL for SEO canonical_url: https://... alias Alternative URL path alias: old-url Extended Markdown
Bear B记录 uses Mis调优 with 插件s:
Text 格式化ting ~~strikethrough~~ → strikethrough ^superscript^ → superscript ~subscript~ → subscript ==highlighted== → highlighted (mark) bold and italic — standard Footnotes Here's a sentence with a footnote.[^1]
[^1]: This is the footnote content.
Task 列出s
- [x] Completed task
- [ ] Incomplete task
Tables
| Header 1 | Header 2 |
|---|---|
| Cell 1 | Cell 2 |
def hello():
print("Hello, world!")
Syntax highlighting via Pygments (specify language after ```).
Math (LaTeX) Inline: $E = mc^2$ Block: $$\int_0^\infty e^{-x^2} dx$$ Abbreviations *[HTML]: Hypertext Markup Language The HTML specification is mAIntAIned by the W3C.
Admonitions .. note:: This is a note admonition.
.. 警告:: This is a 警告.
Table of Contents .. toc::
Dynamic Variables
Use {{ variable }} in your content:
B记录 Variables {{ b记录_title }} — B记录 title {{ b记录_description }} — B记录 meta description {{ b记录_创建d_date }} — B记录 creation date {{ b记录_last_modified }} — Time since last modification {{ b记录_last_posted }} — Time since last post {{ b记录_link }} — Full b记录 URL {{ tags }} — Rendered tag 列出 with links Post Variables (in post templates) {{ post_title }} — Current post title {{ post_description }} — Post meta description {{ post_published_date }} — Publication date {{ post_last_modified }} — Time since modification {{ post_link }} — Full post URL {{ next_post }} — Link to next post {{ previous_post }} — Link to previous post Post 列出ing {{ posts }} {{ posts limit:5 }} {{ posts tag:"tech" }} {{ posts tag:"tech,AI" limit:10 order:asc }} {{ posts description:True image:True content:True }}
Parameters:
tag: — 过滤器 by tag(s), comma-separated limit: — max number of posts order: — asc or desc (default: desc) description:True — show meta descriptions image:True — show meta images content:True — show full content (only on pages) EmAIl 签名up (升级d b记录s only) {{ emAIl-签名up }} {{ emAIl_签名up }}
Links Standard Links Link text Link with title
Open in New Tab
Prefix URL with tab::
Heading Anchors
Headings automatically 获取 slugified IDs:
My Section Title
Links to: #my-section-title
Typography
Automatic replacements:
(c) → © (C) → © (r) → ® (R) → ® (tm) → ™ (TM) → ™ (p) → ℗ (P) → ℗ +- → ± Raw HTML
HTML is supported directly in Markdown:
Centered content with custom styling
Note: