← Back to all apps

Neurnav

Productivityby Neurnav

Neurnav helps you manage long-form documents—like research notes and reports—with Git-style workflows inside ChatGPT. Open a report, see exactly which branch and revision you’re working on, and collaborate with clear diffs, staged edits, and review-ready integration requests. Every change can carry provenance metadata (AI suggestion vs. human approval) so you can publish and share with confidence. You can share a public link to the latest snapshot—all without losing traceability or context.

6ChatGPT Tools
NeurnavDeveloper
ProductivityCategory

Available Tools

Create integration request

integrationRequests.create
Full Description

Use this when the user wants to merge or integrate a branch into another branch (merge/pull/integration request) in Neurnav.

Parameters (4 required, 1 optional)
Required
baseBranch
branchstring
reportIdstring
titlestring
Optional
descriptionstring

Create branch

reports.branches.create
Full Description

Use this when the user wants to create a branch or parallel version for experimentation in Neurnav. Not for general document editing.

Parameters (2 required, 2 optional)
Required
namestring
reportIdstring
Optional
baseBranch
baseCommitShastring

List branches

reports.branches.list
Full Description

Use this when the user asks to list branches or versions for a Neurnav report (e.g., "show branches" or "versions").

Parameters (1 required)
Required
reportIdstring

Commit report

reports.commit
Full Description

Use this when the user wants to save changes as a commit with history/provenance in Neurnav. Not for simple edits; only when working in a Neurnav report and committing to a branch (never main).

Parameters (3 required, 5 optional)
Required
documentContentstring
messagestring
reportIdstring
Optional
authorobject
baseCommitShastring
branchstring
documentPathstring
provenanceobject

Get report

reports.get
Full Description

Use this when the user wants the content of a specific Neurnav report, optionally from a branch. This retrieves version-controlled documents with history/provenance, not Canvas documents.

Parameters (1 required, 1 optional)
Required
reportIdstring
Optional
branchstring

List reports

reports.list
Full Description

Use this when the user wants to find or access Neurnav reports in a Git-style, version-controlled document system (branches, commits, provenance). Not for simple note-taking, Canvas editing, or one-off document creation.