Thanks to visit codestin.com
Credit goes to github.com

Skip to content

quotokun/knowns

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Knowns - Task & Documentation Management

Knowns

Know what your team knows.

CLI-first knowledge layer that gives AI persistent memory of your project.

npm version npm downloads CI License: MIT
node version TypeScript platform GitHub stars PRs Welcome


TL;DR: Knowns is a CLI-first knowledge layer that lets AI reliably read and reuse your project context — instead of asking the same questions every session.

The Problem

AI assistants are stateless — they forget your architecture, patterns, and decisions every session.

Session 1: "Implement feature X" → AI: "How does your auth work?" → You explain

Session 2: "Implement feature Y" → AI: "How does your auth work?" → You explain AGAIN

Session 100: Still explaining the same thing...

The Solution

# Document once
knowns doc create "Auth Pattern" -d "JWT with guards" -f patterns

# Reference everywhere
knowns task create "Add login" -d "Follow @doc/patterns/auth-pattern"

# AI reads context automatically — never forgets

How it works:

  1. You plan — Create tasks with acceptance criteria in Web UI or CLI
  2. You link — Reference docs like @doc/patterns/auth in task descriptions
  3. AI executes — Tell AI "Work on task 42", it reads the task, follows the refs, and implements

Knowns resolves @doc/... and @task-... into real files. AI reads them via MCP or --plain output — no copy-paste needed.

Install

# using npm
npm install -g knowns

# using bun
bun install -g knowns


knowns init
knowns browser  # Open Web UI

Why Knowns over Notion / Jira / Obsidian?

Knowns Notion/Jira Obsidian
AI-readable --plain output, MCP server Copy-paste manually Plugins needed
File-based Git-friendly .knowns/ folder Cloud-locked Local files
CLI-first Full CLI + Web UI Web only GUI only
Context linking @doc/... @task-42 refs Manual links Wiki links
Source of truth Local files (Git-versioned) Remote database Local vault
Minimal setup knowns init and done Complex setup Many plugins

Best for: Dev teams who pair with AI and want persistent project memory.

Features

Feature Description
Task Management Create, track tasks with acceptance criteria
Documentation Nested folders with markdown support
Time Tracking Built-in timers and reports
Context Linking @task-42 and @doc/patterns/auth references
AI Integration MCP Server for Claude, --plain output
Web UI Kanban board, doc browser, dark mode

Quick Reference

# Tasks
knowns task create "Title" -d "Description" --ac "Criterion"
knowns task list --plain
knowns task <id> --plain                    # View task (shorthand)
knowns task edit <id> -s in-progress -a @me

# Documentation
knowns doc create "Title" -d "Description" -f "folder"
knowns doc "doc-name" --plain               # View doc (shorthand)

# Time & Search
knowns time start <id> && knowns time stop
knowns search "query" --plain

Documentation

Guide Description
Command Reference All CLI commands with examples
Workflow Guide Task lifecycle from creation to completion
Reference System How @doc/ and @task- linking works
Web UI Kanban board and document browser
MCP Integration Claude Desktop setup
Configuration Project structure and options
AI Workflow Guide for AI agents

Roadmap

Self-Hosted Team Sync 🚧 (Planned)

Knowns will optionally support a self-hosted sync server — for teams that want shared visibility without giving up local-first workflows.

  • Real-time visibility — See who is working on what
  • Shared knowledge — Sync tasks and documentation across the team
  • Progress tracking — Track activity over time
  • Full data control — Self-hosted, no cloud dependency

The CLI and local .knowns/ folder remain the source of truth. The server acts only as a sync and visibility layer.


Development

npm install
npm run dev      # Dev mode
npm run build    # Build
npm run test     # Test

Links

For design principles and long-term direction, see Philosophy.

For technical details, see Architecture and Contributing.


Know what your team knows.
Built for dev teams who pair with AI.

About

AI-first CLI for task management and documentation. Link docs in tasks, AI reads context automatically. Stop repeating patterns every session. Built-in time tracking, MCP Server, Web UI. Know what your team knows.

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 97.9%
  • CSS 1.4%
  • Other 0.7%