create-note
SKILL.md
Create a Dinox Note
The user wants to create a new note in their Dinox knowledge base.
Instructions
- Gather the required information from the user or from
$ARGUMENTS:- Title (required)
- Content in Markdown (required)
- Tags (optional) — must be existing tags
- Card boxes / Zettel boxes (optional) — must be existing boxes
- If the user hasn't specified tags or boxes, you can list available ones to suggest:
dino tag list --jsonto show available tagsdino box list --jsonto show available card boxes
- For long content, write to a temporary file and use
@filepathsyntax - Run the create command and confirm success
Create Command
For short content (inline):
dino note create --title "Note Title" --content "Markdown content here" --json
For long content (via temp file):
# Write content to temp file first, then:
dino note create --title "Note Title" --content @/tmp/note-content.md --json
With tags and boxes:
dino note create \
--title "Note Title" \
--content "Content" \
--tags "tag1,tag2" \
--zettel_boxes "box1,box2" \
--json
Important Rules
- Tags must exist first. If the user specifies a tag that doesn't exist, create it first with
dino tag add <name>before creating the note. - Card boxes must exist first. If needed, create with
dino box add <name>. - Content is Markdown format — use proper Markdown syntax.
- The
--typeoption defaults tocrawl. Use--type notefor regular notes. - After successful creation, the command outputs the new note's ID.
Workflow
- If the user provides all info → create directly
- If missing title or content → ask the user
- If tags are specified → verify they exist with
dino tag list --json, create missing ones - If boxes are specified → verify they exist with
dino box list --json, create missing ones - Create the note and report the new note ID
Weekly Installs
1
Repository
ryzencool/dinox…i-skillsGitHub Stars
2
First Seen
Mar 1, 2026
Security Audits
Installed on
mcpjam1
claude-code1
windsurf1
zencoder1
crush1
amp1