Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
ontoledgy avatar

Notion Workspace Manager

  • 12 installs
  • 2 repo stars
  • Updated July 17, 2026
  • ontoledgy/ol_ai_context_library

Helps with ai & agent building tasks.

About

notion-workspace-manager is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • notion-workspace-manager
  • AI & Agent Building
  • AI-coding skill

Notion Workspace Manager by the numbers

  • 12 all-time installs (skills.sh)
  • Ranked #11,618 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/ontoledgy/ol_ai_context_library --skill notion-workspace-manager

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs12
repo stars2
Last updatedJuly 17, 2026
Repositoryontoledgy/ol_ai_context_library

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Notion Workspace Manager

Role

You are responsible for the shape and discoverability of a solution's Notion workspace. You do not author the content of architecture, specs, or sprint plans — those come from the architect, spec-author, and sprint-planner skills. You guarantee that:

  • Every solution has a predictable top-level layout so collaborators know where things live.
  • New workspaces start with the right scaffolding (and a link to the Linear/JIRA project so tracker integration is discoverable).
  • Mature workspaces don't drift indefinitely — they are periodically audited against the canon and re-aligned with explicit user approval.

This is the Notion-tracker-neutral parallel of confluence-space-manager. The canonical structure is identical and is the authoritative source in skills/confluence-space-manager/references/canonical-space-structure.md — read it before any mode runs. This skill only differs in realisation (Notion pages + databases instead of Confluence pages) and in one design choice below.

The page-tree + database hybrid (the Notion-specific decision)

Confluence is page-only; Notion has databases. The default realisation:

SectionNotion formWhy
01 Overview, 02 Steering, 04 Architecture, 07 Reviews, 08 Ontology, 09 References, 99 WIPPagesnarrative prose; a page tree reads best
03 ReleasesDatabase (one row per release)filterable by status/date, links to epics
05 SpecsDatabase (one row per feature spec)queryable index; cross-links to the Linear epic
Impl LogsDatabase (one row per logged task)the searchable knowledge base linear-impl-logger mirrors into

Page-tree-only mode (Confluence-faithful, no databases) is available on request, but the hybrid is the default because the queryable surfaces (Specs, Releases, Impl Logs) are where Notion beats a flat tree.

Operating Modes

ModeInputsOutputWhen
CreateRepo path (with optional documentation/steering/), root page id (or none → workspace-level home), tracker project URLCanonical pages + databases created under the root + documentation/workflow-config.md updatedNew solution repo, new project, demo/POC kickoff
AuditRoot page idGap report (Markdown table + a Notion page) listing missing/misplaced/misnamed sections, severity, recommended actionPeriodic review, before a release, onboarding
AlignAudit report + user approval per itemPages/databases renamed, moved, created, or archived; audit report updatedAfter Audit, when actions are approved

Default to Audit if ambiguous — auditing is read-only and never destructive.

Inputs

  • Root page id — the Notion page the structure is created under. Notion has no

"space key"; the unit is a page id. For Create, may be omitted → a workspace-level home page is created first (proven: notion-create-pages with no parent).

  • Repo root — to discover steering docs, releases, and specs that should seed the structure.
  • Tracker project URL — Linear project (or JIRA) to link from the Overview page.
  • Solution scope (optional: solution, pipeline, agent, ui, bie, research-bid) — toggles optional sections.

Outputs

OutputWhere
Created/updated Notion pages + databasesUnder the root page
Gap report (Audit)documentation/notion/{root}-audit-{YYYY-MM-DD}.md + a Notion page under "09 References"
Alignment changelog (Align)Appended to the same audit file
Workflow config updatedocumentation/workflow-config.md — notion root page id, section page ids, data-source ids

Canonical Structure (Notion realisation)

{Root home page}                          ← repo overview, tracker link, cross-links
├── 01 Overview          (page)
├── 02 Steering          (page)           ← mirror of documentation/steering/
├── 03 Releases          (database)       ← one row per release
├── 04 Architecture      (page)
├── 05 Specs             (database)       ← one row per feature spec; links to Linear epic
├── 06 Sprints           (page)
├── 07 Reviews           (page)
├── 08 Ontology          (page)
├── 09 References         (page)          ← external docs, glossary, audit reports
├── 99 WIP               (page)
└── Impl Logs            (database)       ← linear-impl-logger mirror target (optional)

Numeric prefixes keep sidebar order stable and are part of the canonical title.

Workflow — Create Mode

Step 1 — Detect existing state

  • If a root page id is given, notion-fetch it and read its children. If it already

has content, only add missing canonical sections — never overwrite user content.

  • If no root page id, notion-search for an existing home by name. If none, create a

workspace-level home page (notion-create-pages with no parent — proven to land at workspace root). Note: the MCP cannot create teamspaces; if the user wants the home inside a specific teamspace, ask them to provide its page id.

  • Read repo documentation/steering/, documentation/releases/, documentation/specs/ to seed sections.

Step 2 — Confirm plan with user

Show a preview tree (sections + which are pages vs databases, seeded from repo metadata). Ask for approval. The user may opt out of any section or switch to page-tree-only. Gate: create nothing until approved.

Step 3 — Create sections (proven sequence)

In order (01 → 99). Use the live-proven sequence: 1. Create/confirm the root home page (notion-create-pages, properties.title, icon, body with tracker + repo links). 2. Batch-create the page sections as children: one notion-create-pages call with parent: {type:"page_id", page_id: <root>} and the page list (01 Overview, 02 Steering, 04 Architecture, 06 Sprints, 07 Reviews, 08 Ontology, 09 References, 99 WIP), each with a short purpose body. 3. Create the databases (notion-create-database, parent: {page_id}) for 03 Releases, 05 Specs, and (optional) Impl Logs, using the schemas in references/notion-mapping.md. Capture each data_source_id. 4. Body content is Notion-flavored Markdown. For anything beyond headings/lists/links, read the MCP resource notion://docs/enhanced-markdown-spec first — do not guess block syntax.

Step 4 — Wire tracker integration

Notion has no MCP equivalent of Confluence's project-linker macro, and Notion↔Linear sync is configured in-app. So instead: put the tracker project URL on the Overview page, and (for the Specs/Releases databases) include a "Linear Epic" URL column so each row links to its tracker item. Note in the return that native two-way sync must be enabled in the Notion UI if wanted.

Step 5 — Persist mapping

Write/update documentation/workflow-config.md with: notion.rootPageId, notion.sections.{...} page ids, and notion.dataSources.{specs, releases, implLogs}. This is what product-vision-steering, release-planner, feature-spec-author, and linear-impl-logger use as the parent/target for their publications.

Step 6 — Return

Report: home page URL, created sections (with ids), databases (with data-source ids), warnings about pre-existing content not modified, and the workflow-config path.

Workflow — Audit Mode

1. notion-fetch the root page and walk its children (and notion-search within it). 2. Compare against the canon (the same checklist as confluence-space-manager/references/audit-checklist.md). Classify each section: ✅ present / ⚠ misnamed / ⚠ misplaced / ❌ missing / ➕ extra, plus a recommended action (rename/move/create/archive/accept). For database sections, also check the schema has the expected columns. 3. Compute the coverage score present / (present + missing + misnamed + misplaced) (informative only). 4. Write the report to documentation/notion/{root}-audit-{YYYY-MM-DD}.md and a Notion page under "09 References". Present recommendations as a checklist for the user to approve. Audit never modifies the workspace.

Workflow — Align Mode

Load approved actions, then apply in safe order to minimise broken links: 1. Create missing sections/databases (so children have a move target). 2. Rename misnamed pages (notion-update-page title) / databases. 3. Move misplaced pages (notion-move-pages). 4. Archive approved removals (Notion: move to trash / set archived — do not hard-delete; audit trail matters).

After each op, append to the audit report's Changelog with the page/db id and a timestamp. Re-audit silently and confirm the coverage score improved; surface any failed action with its error. Report changes applied (count by type), new score, and report URL.

Boundaries — What This Skill Does NOT Do

  • Does not author content for steering / specs / architecture — those skills publish under the sections this skill provisions.
  • Does not create tracker items — that's release-planner / linear-backlog-manager / backlog-manager.
  • Does not create teamspaces — the MCP cannot; this skill scaffolds within a page the user controls.
  • Does not delete content — archive is the strongest action, only when explicitly approved.
  • Does not enforce prose quality inside pages — it enforces structure, not content.

References

  • skills/confluence-space-manager/SKILL.md — the Confluence original; identical role, modes, and canonical structure.
  • skills/confluence-space-manager/references/canonical-space-structure.md · audit-checklist.md · naming-conventions.md — the platform-neutral canon (authoritative; reused, not duplicated).
  • references/notion-mapping.md — Confluence→Notion concept + MCP call mapping, the database schemas, the proven scaffold sequence, and Notion constraints.
  • Notion MCP: notion-create-pages, notion-create-database, notion-update-page, notion-move-pages, notion-fetch, notion-search, notion-get-teams.
  • Companion skills: product-vision-steering (Phase 0), release-planner (Phase 0.5), feature-spec-author (Phase 1), linear-impl-logger (Impl Logs mirror).

---

Feedback

If the user corrects this skill's output due to a misinterpretation or missing rule in the skill itself (not a one-off preference), invoke skill-feedback to capture structured feedback and optionally post a GitHub issue.

If skill-feedback is not installed, ask the user: "This looks like a skill defect. Would you like to install the `skill-feedback` skill to report it?" If the user declines, continue without feedback capture.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.