From claude-orgmode
Provides Org-mode syntax reference for .org files: headings, lists, links, properties, timestamps, tables, source blocks. Useful for formatting notes and code docs.
npx claudepluginhub majorgreys/claude-orgmode --plugin claude-orgmodeThis skill uses the workspace's default tool permissions.
Pure org-mode knowledge for writing and formatting `.org` files. No emacsclient or Emacs daemon required.
Generates Obsidian Flavored Markdown with wikilinks, callouts, embeds, frontmatter properties, tags, and block references for creating/editing notes in Obsidian vaults.
Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, block IDs, and syntax extensions for Obsidian .md files.
Share bugs, ideas, or general feedback.
Pure org-mode knowledge for writing and formatting .org files. No emacsclient or Emacs daemon required.
For org-roam or vulpea note management (creating notes, searching, linking), use the org-roam or vulpea skills instead.
* Top-level heading
** Second level
*** Third level
*bold* /italic/ _underline_ ~code~ =verbatim= +strikethrough+
- Unordered item
- Nested item
1. Ordered item
2. Second item
- [ ] Checkbox unchecked
- [X] Checkbox checked
[[https://example.com][Description]]
[[file:path/to/file.org][File link]]
[[id:uuid-here][ID link]]
:PROPERTIES:
:ID: some-uuid
:CUSTOM: value
:END:
#+TITLE: Document Title
#+FILETAGS: :tag1:tag2:
#+DATE: [2026-03-01 Sun]
#+AUTHOR: Name
<2026-03-01 Sun> Active timestamp
[2026-03-01 Sun] Inactive timestamp
<2026-03-01 Sun 10:00> With time
SCHEDULED: <2026-03-01 Sun>
DEADLINE: <2026-03-05 Thu>
#+BEGIN_SRC python
def hello():
print("Hello")
#+END_SRC
| Name | Value |
|-------+-------|
| Alice | 42 |
| Bob | 17 |
Org-mode tags cannot contain hyphens. Use underscores instead:
my-tag, web-devmy_tag, web_dev