@stackmemoryai/companyos
v1.0.2
Published
StackMemory CompanyOS — Business intelligence + team memory for AI-native companies. Ask plain-English questions across your systems with full StackMemory context persistence.
Maintainers
Readme
@stackmemoryai/companyos
StackMemory CompanyOS — Business intelligence + persistent AI memory for teams.
Install
npm install -g @stackmemoryai/companyosUsage
Quick Start (new workspace)
# Scaffold a new CompanyOS workspace with interactive TUI
companyos init
# Or skip prompts and use defaults
companyos init --yesCommands
# Authenticate
companyos login --api-key YOUR_API_KEY
# Ask plain-English questions
companyos ask "What was our Q2 revenue?"
companyos ask "Show me overdue invoices"
# Daily briefing
companyos briefing
# Sync docs to StackMemory
companyos sync
# Search indexed docs
companyos search "burn rate"
# StackMemory status
companyos memory statusProgrammatic API
const { CompanyOS } = require('@stackmemoryai/companyos');
const cos = new CompanyOS({ apiKey: process.env.COMPANYOS_API_KEY });
const result = await cos.ask('What was our Q2 revenue?');
console.log(result.answer);Features
- Persistent memory — Every query and answer is stored in StackMemory for future context
- Multi-system — Query Stripe, Salesforce, QuickBooks, Gmail, Slack from one interface
- Daily briefings — Automated morning summaries with trend analysis
- MCP-compatible — Works with Claude Code, Cursor, and other MCP hosts
