agentsclimarketplace

Notion linker

Skill vdk888/bubble-skills/notion-linker

Automatically link published content (Substack articles, LinkedIn posts) back to project rows in a Notion database. Use after publishing content to record the live URL on its Notion project.From its SKILL.md

Install
npx -y skills add vdk888/bubble-skills --skill notion-linker

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.7 KB, 358 tokens by cl100k_base, as published. Nobody here has run it

Notion Linker

Automated tool to update Notion project pages when new content is created.

Usage

Link Substack Article

python3 skills/notion-linker/notion_linker.py \
  --type substack \
  --title "Article Title" \
  --url "https://substack.com/..." \
  --status Published

Link LinkedIn Post

python3 skills/notion-linker/notion_linker.py \
  --type linkedin \
  --title "FR/EN - Post Title" \
  --status Scheduled

Status Options

  • Draft — Content being written
  • Scheduled — Approved, waiting for publication
  • Published — Live on platform

Projects Linked

Content TypeNotion ProjectProject ID
Substack articlesSubstack - Newsletter<YOUR_NOTION_DB_ID>
LinkedIn postsLinkedIn Sage Agent<YOUR_NOTION_DB_ID>

Integration with Agents

For Substack Agent

After publishing an article, run:

import sys
sys.path.insert(0, "skills/notion-linker")
from notion_linker import link_substack_article

link_substack_article(
    title="Article Title",
    url="https://substack.com/...",
    status="Published"
)

For Content (LinkedIn) Agent

After scheduling a post, run:

import sys
sys.path.insert(0, "skills/notion-linker")
from notion_linker import link_linkedin_post

link_linkedin_post(
    title="FR/EN - Post Title",
    status="Scheduled"
)

What ships with it: 1 file

8.9 KB alongside SKILL.md, 1 of them executable

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.