# Send SlipBot Logseq Importer to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "slipbot-logseq-importer",
    "name": "SlipBot Logseq Importer",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jrswab/slipbot-logseq-importer",
    "canonicalUrl": "https://clawhub.ai/jrswab/slipbot-logseq-importer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/slipbot-logseq-importer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=slipbot-logseq-importer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/slipbot-logseq-importer"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/slipbot-logseq-importer",
    "downloadUrl": "https://openagent3.xyz/downloads/slipbot-logseq-importer",
    "agentUrl": "https://openagent3.xyz/skills/slipbot-logseq-importer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/slipbot-logseq-importer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/slipbot-logseq-importer/agent.md"
  }
}
```
## Documentation

### Logseq Import

Parse a Logseq page and create individual slipbox entries for each bullet point.

### Critical Rule: Ignore All Tags

Do not import any tags from Logseq. This includes:

Page-level tags:: property
Inline #tags in bullet content
block-tags:: metadata

Slipbot generates its own tags based on content. Logseq tags would conflict with this.

### Input Format

Logseq pages have two parts:

1. Page Properties (top of page, key:: value format):

type:: #literature
source:: Book
author:: David Kadavy
title:: Digital Zettelkasten
alias:: zettelkasten-book
status::
tags::

2. Bulleted Notes (markdown list):

- First note content here
- Second note with [[page ref]] link
  - Nested bullet under second
- Third note id:: abc123-uuid

### Property Mapping

Logseq PropertySlipbox Fieldtitle::source.titlesource::source.type (if plain text like "Book")source:: [text](url)source.title + source.url (if markdown link)author::source.authortype:: #literatureNote type hint (maps to note)alias::Ignorestatus::Ignoretags::Ignore (slipbot generates better tags)

Empty properties (e.g., author:: with no value) → null

### Properties

Extract all key:: value lines at the top
Stop when hitting first bullet (- )
Strip # from values like #literature
Parse markdown links: [text](url) → extract both parts

### Bullets

Each top-level bullet (- ) becomes its own slipbox note
Nested bullets: Add parent context to make them standalone

Example parent: - [[Fleeting Notes]]: quick notes written anywhere
Example child:   - Can be on paper or digital
Result: "Fleeting Notes (quick notes written anywhere) can be on paper or digital"


Strip Logseq metadata from bullets:

id:: uuid → remove
block-tags:: #xxx → remove entirely
#tag inline tags → remove entirely (slipbot generates its own)
#{"{" or malformed tags → remove


Convert [[page refs]] → plain text (potential link targets)

### Content Cleanup

Remove trailing id:: xxx from bullets
Remove block-tags:: xxx entirely
Remove all #tag inline tags (slipbot generates its own tags)
Preserve markdown formatting (bold, italic, code)

### Workflow

Precheck (before import)

Parse the page properties and bullets (don't create notes yet)
Generate a brief summary of what the page is about (1-2 sentences based on title, author, and content themes)
Count total notes that will be created (including nested bullets that become standalone)
Present to user: summary, note count, source info
Ask for confirmation before proceeding with import
If user declines, stop and don't create any notes



Parse the page (after confirmation)

Extract page properties → source metadata
Extract all bullets → note list
Handle nesting by enriching child bullets with parent context



For each bullet, invoke slipbot workflow:

Use - {content} prefix (note type)
Include source: ~ {source.type}, {source.title} by {source.author}
Let slipbot handle: filename, tags, links, graph update



Report results

Count of notes created
Any issues encountered

### Example

Input:

type:: #literature
source:: Book
author:: David Kadavy
title:: Digital Zettelkasten

- Rewriting ideas helps decide their importance
- [[Fleeting Notes]]: quick notes written anywhere
  - Can be captured on paper or digitally
- Keywords should be specific to the idea id:: abc123

Processing:

Source: Book, "Digital Zettelkasten" by David Kadavy


Bullets extracted:

"Rewriting ideas helps decide their importance"
"Fleeting Notes: quick notes written anywhere"
"Fleeting Notes can be captured on paper or digitally" (nested, parent context added)
"Keywords should be specific to the idea" (id stripped)



Each sent to slipbot as:

- Rewriting ideas helps decide their importance ~ Book, Digital Zettelkasten by David Kadavy
etc.

### Edge Cases

No properties: Treat as standalone notes without source
Deeply nested bullets (3+ levels): Flatten, accumulating context from all ancestors
Citation sections (## Citation:): Ignore (redundant with properties)
Non-bullet content: Ignore headers, paragraphs outside bullets
Multiple [[refs]] in one bullet: Keep all, convert to plain text
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jrswab
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/slipbot-logseq-importer)
- [Send to Agent page](https://openagent3.xyz/skills/slipbot-logseq-importer/agent)
- [JSON manifest](https://openagent3.xyz/skills/slipbot-logseq-importer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/slipbot-logseq-importer/agent.md)
- [Download page](https://openagent3.xyz/downloads/slipbot-logseq-importer)