โ† All skills
Tencent SkillHub ยท Developer Tools

Alexandrie

CRUD operations for Alexandrie, a self-hosted Markdown note-taking app. Create, read, update, delete and search notes via REST API.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

CRUD operations for Alexandrie, a self-hosted Markdown note-taking app. Create, read, update, delete and search notes via REST API.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, alexandrie.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

Alexandrie Skill

Interact with Alexandrie note-taking app at https://notes.eth3rnit3.org

Configuration

API URL: https://api-notes.eth3rnit3.org/api Frontend: https://notes.eth3rnit3.org Username: eth3rnit3 User ID: 671423603690045441 Password: Stored in /home/eth3rnit3/clawd/.env as ALEXANDRIE_PASSWORD

Usage

Use the alexandrie.sh script for all operations: /home/eth3rnit3/clawd/skills/alexandrie/alexandrie.sh <command> [args]

Authentication

./alexandrie.sh login # Login and get token ./alexandrie.sh logout # Logout

Notes (Nodes)

./alexandrie.sh list # List all notes/categories ./alexandrie.sh get <nodeId> # Get a specific note with content ./alexandrie.sh search <query> # Search notes ./alexandrie.sh create <name> [content] [parentId] # Create a note ./alexandrie.sh update <nodeId> <name> [content] # Update a note ./alexandrie.sh delete <nodeId> # Delete a note

Node Roles

role: 1 = Category/Workspace (container) role: 3 = Document (note with content)

Current Structure

671425872858841091 - Perso (category) 671426069886271492 - Test (document)

List all notes

./alexandrie.sh login ./alexandrie.sh list

Read a note

./alexandrie.sh get 671426069886271492 # Returns: "Salut, ceci est un **test**"

Create a note

./alexandrie.sh create "My Note" "# Title\n\nContent here" 671425872858841091

Search

./alexandrie.sh search "test"

API Reference

Base URL: https://api-notes.eth3rnit3.org/api

Endpoints

POST /auth - Login (body: {"username": "...", "password": "..."}) POST /auth/logout - Logout GET /nodes/user/:userId - List user's nodes GET /nodes/:nodeId - Get node by ID (includes content) GET /nodes/search?q=query - Search nodes POST /nodes - Create node PUT /nodes/:nodeId - Update node DELETE /nodes/:nodeId - Delete node

Authentication

JWT token stored in cookies after login (/tmp/alexandrie_cookies.txt).

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • alexandrie.sh Scripts