Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

SlipBot Logseq Importer

v1.0.0

Import notes from Logseq pages into the slipbox. Use when user pastes a Logseq page with properties and bulleted notes. Parses page-level properties, extracts each bullet as an individual note, handles nested bullets by adding parent context, then runs slipbot for each.

0· 907·0 current·0 all-time
byJaron Swab@jrswab
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (Logseq→slipbox importer) align with the instructions: parse properties and bullets, flatten nesting, clean metadata, and produce slipbot-ready entries. The only slight mismatch is that the SKILL.md expects a 'slipbot' workflow to be invoked but does not declare how that is provided (another skill, binary, or API). That is a documentation/coordination gap rather than an incoherent capability request.
Instruction Scope
Instructions are narrowly scoped to parsing page properties and bullets, cleaning metadata, building note content, performing a precheck, asking for confirmation, and then invoking slipbot per note. They do not ask for unrelated system files, environment variables, or external endpoints. The explicit 'Ask for confirmation' step reduces risk of accidental data creation.
Install Mechanism
This is an instruction-only skill with no install spec, packages, or downloads—lowest risk. Nothing is written to disk by the skill itself (no install steps present).
Credentials
The skill requests no environment variables, credentials, or config paths. All declared requirements are proportional to the stated task. Note: invoking slipbot implicitly requires the agent have access to slipbot (another skill/binary); that capability is not declared in this skill.
Persistence & Privilege
always is false and autonomous invocation is not disabled (platform default). The skill does not request permanent presence or modify other skills. No elevated privileges are requested.
Assessment
This skill appears coherent and low-risk, but check two practical points before installing: (1) Confirm how 'slipbot' will be invoked—ensure the agent environment has the slipbot skill/binary or an agreed integration so notes can actually be created. (2) Understand the irreversible content transformations: the skill intentionally strips all Logseq tags/metadata (page tags, inline #tags, block-tags, id::), which may discard user tagging/IDs you want to keep. Test on sample pages first and verify the precheck summary/counts before confirming imports.

Like a lobster shell, security has layers — review code before you run it.

latestvk97be3g5rdyx21swnsk0ywx4zd80z6nd
907downloads
0stars
1versions
Updated 8h ago
v1.0.0
MIT-0

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 Field
title::source.title
source::source.type (if plain text like "Book")
source:: [text](url)source.title + source.url (if markdown link)
author::source.author
type:: #literatureNote type hint (maps to note)
alias::Ignore
status::Ignore
tags::Ignore (slipbot generates better tags)

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

Parsing Rules

Properties

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

Bullets

  1. Each top-level bullet (- ) becomes its own slipbox note
  2. 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"
  3. 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
  4. 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

  1. 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
  2. Parse the page (after confirmation)

    • Extract page properties → source metadata
    • Extract all bullets → note list
    • Handle nesting by enriching child bullets with parent context
  3. 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
  4. 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:

  1. Source: Book, "Digital Zettelkasten" by David Kadavy

  2. 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)
  3. 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

Comments

Loading comments...