No description
Find a file
Eoin H 386c2bd3eb fix: resolve plugin review issues for attestation, deps, and lockfile
- Add GitHub artifact attestation for main.js in release workflow
- Pin @types/jest to exact version 29.5.14
- Commit bun.lock by removing it from .gitignore
2026-05-19 00:31:07 +01:00
.github/workflows fix: resolve plugin review issues for attestation, deps, and lockfile 2026-05-19 00:31:07 +01:00
src fix: resolve plugin review issues for lint, manifest, and release 2026-05-19 00:23:29 +01:00
.editorconfig Initial commit 2025-03-31 16:41:10 +00:00
.eslintignore Initial commit 2025-03-31 16:41:10 +00:00
.eslintrc Initial commit 2025-03-31 16:41:10 +00:00
.gitignore fix: resolve plugin review issues for attestation, deps, and lockfile 2026-05-19 00:31:07 +01:00
.npmrc Initial commit 2025-03-31 16:41:10 +00:00
bun.lock fix: resolve plugin review issues for attestation, deps, and lockfile 2026-05-19 00:31:07 +01:00
CHANGELOG.md docs: update CHANGELOG.md for v1.5.4 [skip ci] 2025-05-06 20:53:30 +00:00
esbuild.config.mjs fix: resolve plugin review issues for lint, manifest, and release 2026-05-19 00:23:29 +01:00
LICENSE feat: Add MIT LICENSE 2025-04-16 11:36:37 +01:00
Makefile chore: Cleanup Makefile 2025-04-16 11:44:48 +01:00
manifest.json 1.5.5 2026-05-19 00:31:04 +01:00
package.json fix: resolve plugin review issues for lint, manifest, and release 2026-05-19 00:23:29 +01:00
README.md chore: Updated README 2025-04-15 23:50:38 +01:00
tsconfig.json fix: Add types for jest 2025-05-06 21:33:41 +01:00
version-bump.mjs Initial commit 2025-03-31 16:41:10 +00:00
versions.json 1.5.5 2026-05-19 00:31:04 +01:00

Inboxer, an Obsidian Plugin

A simple Obsidian plugin that helps you organize notes with dedicated inbox and timeline sections. I made this to use with daily notes or project notes, to keep a running inbox and a running timeline of events.

Features

  • Add to Inbox: Add new headings under an "INBOX" section
  • Add to Timeline: Add timestamped entries under a "TIMELINE" section

Settings

Setting Description Default
Inbox heading text Text to search for when finding/creating inbox heading INBOX
Timeline heading text Text to search for when finding/creating timeline heading TIMELINE

Usage Example

Starting with a note:

# My Note

Some content here.

After using "Add to Inbox" command:

# My Note

Some content here.

## INBOX

### Your new inbox item

Thereafter "Add to Inbox" will add a new child heading under INBOX

After using "Add to Timeline" command:

# My Note

Some content here.

## INBOX

### Your new inbox item

## TIMELINE

### 2025-04-03 14:30 Your timeline entry

Thereafter "Add to Timeline" will add a new timestamped child heading under INBOX

Installation

  1. Download latest release and extract to .obsidian/plugins

How It Works

The plugin finds (or creates) your inbox/timeline headings and inserts new entries. It preserves section hierarchy and places the cursor for immediate typing.