Command-line interface for managing Cogits on Septerional.
npm install -g @septerional/sepsep initThis will prompt you for your API key. Get one from console.septerional.com.
sep create "My First Cogit"With options:
sep create "Project Ideas" \
--description "Ideas for my next project" \
--tags "ideas,projects,todo" \
--privatesep listShow more results:
sep list --limit 20sep search "javascript"# Add a progress update
sep add progress "Finished the API integration" --cogit 6
# Ask a question
sep add question "Should we refactor this?" --cogit 6
# Add a synthesis
sep add synthesis "The key insight is..." --cogit 6Authenticate with your API key.
Create a new Cogit.
Options:
-d, --description <text>- Cogit description-t, --tags <tags>- Comma-separated tags--private- Make the Cogit private (default: public)
Examples:
# Simple cogit
sep create "Morning thoughts"
# With description and tags
sep create "API Design Notes" \
--description "Notes on REST API design patterns" \
--tags "api,design,backend"
# Private cogit
sep create "Personal Journal" --privateList your Cogits.
Options:
-l, --limit <number>- Number of Cogits to show (default: 10)
Examples:
# List last 10 cogits
sep list
# List last 50 cogits
sep list --limit 50Search for Cogits.
Examples:
# Search by keyword
sep search "react hooks"
# Search for a specific topic
sep search "machine learning"Add an entry to a Cogit.
Options:
-c, --cogit <id-or-slug>- Cogit ID (e.g.,6) or slug (e.g.,my-idea) to add entry to (required)
Entry Types:
progress- Track progress and updatesquestion- Ask questions or raise doubtssynthesis- Summarize conclusions or insightsadjustment- Note changes in approach or directionresource- Share links, references, or resources
Examples:
# Add a progress update (using slug)
sep add progress "Completed the authentication system" --cogit my-project-ideas
# Ask a question (using ID)
sep add question "Should we use REST or GraphQL?" --cogit 6
# Add a synthesis (using slug)
sep add synthesis "The best approach is to start simple and iterate" --cogit api-design-notes
# Document an adjustment
sep add adjustment "Changed from MySQL to PostgreSQL for better JSON support" --cogit backend-refactor
# Share a resource
sep add resource "Great article: https://example.com/api-design" --cogit learning-resourcesConfiguration is stored in ~/.config/septerional-sep/config.json
apiKey- Your Septerional API keyapiUrl- API endpoint (default: https://api.septerional.com)
- Node.js >= 18.0.0
MIT