📝
AutomationTypst

TaskNotes

by ArtemXTech

TaskNotes is an Automation skill for Claude Code, published by ArtemXTech in claude-code-obsidian-starter.

224 stars46 forkson ArtemXTech/claude-code-obsidian-starterAdded 2026/09/03Repository updated 2026/01/23
aiautomationclaude-codeobsidianproductivity
Install in seconds
Install TaskNotes
Copy TaskNotes into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/ArtemXTech/claude-code-obsidian-starter/tree/main/.claude/skills/tasknotes ~/.claude/skills/tasknotes

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/ArtemXTech/claude-code-obsidian-starter.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
.claude/skills/tasknotes/SKILL.md in ArtemXTech/claude-code-obsidian-starter
Installs to
~/.claude/skills/tasknotes
Collection
One of 5 skills cataloged from this repository
Category
Automation1754 skills

What TaskNotes does

TaskNotes creates, updates, deletes, and lists tasks through the TaskNotes plugin HTTP API. Use it to manage task status, priority, due dates, and project links.

TaskNotes is cataloged under Automation on DirSkills. TaskNotes comes from a repository tagged ai, automation, claude-code, obsidian and productivity.

Documentation

README

TaskNotes Skill

CRUD operations on tasks via TaskNotes plugin HTTP API.

API Endpoint

http://127.0.0.1:8090/api

List Tasks

curl -s "http://127.0.0.1:8090/api/tasks"
curl -s "http://127.0.0.1:8090/api/tasks?status=in-progress"

Create Task

curl -X POST "http://127.0.0.1:8090/api/tasks" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Task title",
    "status": "open",
    "priority": "high",
    "projects": ["[[Project Name]]"],
    "due": "2026-01-15",
    "scheduled": "2026-01-10"
  }'

Fields:

This is the opening of the README. Read the full README on GitHub.

Frequently asked about TaskNotes

  • What else does ArtemXTech publish alongside TaskNotes?

    TaskNotes is one of 5 skills that DirSkills catalogs from ArtemXTech/claude-code-obsidian-starter, the repository it ships in. Its siblings there include Client Management, Granola and Query. Each one is a separate skill with its own page in this directory, installs the same way TaskNotes does, and is maintained by ArtemXTech in that same repository. The rest of the collection is listed on the ArtemXTech/claude-code-obsidian-starter page.

  • How does TaskNotes compare to other Automation skills?

    TaskNotes ranks #1608 by stars among the 1754 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of TaskNotes against them. Open each page to compare what they document and how they install.