Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

InnoDay Platform

CI/CD Release Python License: AGPL v3 Code Style: Ruff

InnoDay is the AI-powered central hub for your projects. Development state normally scatters across a board, GitHub, a release tool, and someone's meeting notes — InnoDay pulls it into one project-shaped record that every skill, agent, and CLI tool writes back to, so tickets, releases, syncs, scope changes, and decisions all stay queryable in one place (and an AI teammate stays productive across sessions instead of being re-briefed each time).

📖 New here?Quickstart to get connected (~5 min) · Platform Guide for how it works.

✨ Key Features

  • AI team orchestration — smart update collection, SCRUM facilitation, workload distribution, and Claude-powered conversation analysis.
  • Central hub / record of truth — tickets, releases, board syncs, scope changes, repo additions, and agent output all write back to InnoDay. Rule of thumb: if you need to remember it across sessions or share it, save it here — local .innoday/memory.json is only a cache.
  • Project-based organization — goals, versioned scope docs, repository layer classification, and one board per project (enforced at the DB level).
  • Unified multi-platform integration — Jira, Trello, Notion, Linear, and GitHub behind one universal ticket model, with token pass-through (credentials never stored in the DB).
  • Enterprise-ready — org-based multi-tenancy, RBAC (MEMBER/ADMIN/OWNER/DEVELOPER/PLATFORM), and usage-based license tiers.

The full narrative — the six problems it solves, with diagrams and the enforced-hierarchy rationale — is in the Platform Guide.

🚀 Quick Start

Most people just need the CLI, pointed at the shared dev environment — not a repo clone or a self-hosted platform.

uv tool install innoday          # install the CLI from PyPI
innoday login --with-token       # paste your idt_… token when prompted
innoday init hs/pf               # onboard a project workspace (clones + configures repos)
innoday status                   # verify: identity, resolved project, token, API health

Full walkthrough — including token handling, working across projects, and the "already used InnoDay before?" upgrade step — is in the Quickstart.

🤖 Claude Code MCP Integration

Add InnoDay directly to Claude Code — create tickets, sync boards, and query work items without leaving your editor. Reuses the CLI config from the Quick Start above.

claude mcp add innoday -- uvx --from innoday mcp-server-innoday

Or find it in the MCP registry: io.github.havilandsoftware/mcp-server-innoday.

Prefer the full plugin? Installing InnoDay as a Claude Code plugin bundles the MCP server plus the InnoDay agents and skills in one step — no separate claude mcp add:

/plugin marketplace add havilandsoftware/innoday
/plugin install innoday@innoday

The MCP Integration Guide is the canonical reference — the full tool catalog, environment variables (INNODAY_API_URL, INNODAY_TEAM_SECRET), how org/project context resolves from .innoday/project.yml, and troubleshooting. (This README deliberately doesn't maintain a second hand-written tool list, to avoid the two drifting apart.)

Hitting a stale MCP server, a 401, or another snag? See Troubleshooting.

📇 CLI Reference

The everyday commands — run innoday <command> --help for the full flag list on any of them:

# Onboarding (see docs/QUICKSTART.md)
innoday login --with-token        # authenticate (or plain `innoday login` for browser device flow)
innoday init <org>/<proj>         # onboard a project workspace by alias, e.g. hs/pf
innoday refresh                   # re-pull repos + rebuild context for the current workspace
innoday whoami                    # show the logged-in identity
innoday status                    # connectivity, identity, orgs, assigned tickets

# Everyday work (context auto-resolves from cwd's .innoday/project.yml)
innoday tickets list                                   # list tickets
innoday tickets create "New feature"
innoday tickets update --ticket-id <id> --status IN_PROGRESS
innoday sync                                           # cascade: board tickets + repo discovery + release state
innoday orgs list                                      # organizations you can access

The CLI Documentation has the exhaustive command catalog (projects, boards, scope, repo discovery, service management, output formats).

🗂️ Config & Project Setup

Two files at two scopes — keep them straight:

File Scope What it holds
~/.innoday/config.json Your machine, all projects Identity: profile, API URL, your user id, team secret, a cached org map. Never stores integration secrets — only pointers (system keyring / Supabase Vault). The current org/project is never persisted here.
<workspace>/.innoday/project.yml One project workspace Which org + project this directory is, plus the repos that make it up. Written by innoday init / innoday refresh.

Context is resolved from your current directory: every tool (CLI, MCP server, blastoff) walks up from where you are until it finds a .innoday/project.yml, and uses the org/project in it — so running from inside a workspace "just works" with zero flags. There is no persistent "switch" command; a --organization/--project flag overrides for one call only.

The object model (Organization → Project → Board/Ticket/Repository/Release) and the exact resolution precedence are explained in full in the Platform Guide and Project Architecture.

🔧 Running Your Own Platform

Only needed if you're self-hosting InnoDay or developing on this repo itself — most users want the Quick Start above instead.

git clone git@github.com:havilandsoftware/innoday.git
cd innoday
./install.sh
innoday platform init   # Interactive setup wizard (new terminal)

The full walkthrough — prerequisites, database setup, environment variables, verification, platform staff roles, known limitations — is the canonical Platform Setup Guide; this README doesn't duplicate it.

Other ways to run it:

No installation — run from the cloned repo directly
git clone https://github.com/havilandsoftware/innoday.git
cd innoday
./bin/innoday --version   # Wrapper: cd's to repo root, runs via uv, no install step

cat > .env.local <<'EOF'
ENVIRONMENT=local
DATABASE_URL=postgresql://innoday:innoday_pass@localhost:54322/innoday
CLAUDE_API_KEY=your-claude-api-key
GITHUB_TOKEN=your-github-token
GITHUB_ORG=havilandsoftware
EOF

./bin/innoday platform start --env local
Docker Compose
git clone https://github.com/havilandsoftware/innoday.git
cd innoday
docker compose up -d

Service URLs (local): REST API http://localhost:8002 (docs) · Web UI http://localhost:8002/ui · Agent API http://localhost:9000

📖 Documentation

🧪 Development

Contributor setup, the full test suite, and code-quality tooling (ruff / mypy) live in the Contributing Guide. The short version:

uv sync && uv run alembic upgrade head        # deps + migrations
ENVIRONMENT=local uv run python -m pytest tests/ -v   # tests
uv run ruff format . && uv run ruff check .   # format + lint

CI/CD: every merge to main auto-bumps the patch version, publishes the package to PyPI and the MCP registry, and creates a GitHub release. See Version Management for the release mechanism and CLAUDE.md for deployment (Railway) details.

🤝 Contributing

Fork → feature branch → PR. Full development standards and the contribution workflow are in the Contributing Guide.

📞 Support

📄 License

This project is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0) — see the LICENSE file for details.


Built with ❤️ by Haviland Software

Haviland Software

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

innoday-0.1.173b0.tar.gz (897.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

innoday-0.1.173b0-py3-none-any.whl (736.9 kB view details)

Uploaded Python 3

File details

Details for the file innoday-0.1.173b0.tar.gz.

File metadata

  • Download URL: innoday-0.1.173b0.tar.gz
  • Upload date:
  • Size: 897.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for innoday-0.1.173b0.tar.gz
Algorithm Hash digest
SHA256 4b390a4bb25019cf2a6d8d6e6b65a1272f65c24123ff51eb8fa8d60d717007cc
MD5 8d25741fea864e1c1af887ca161a85c5
BLAKE2b-256 0e552f1ffb2b12a7c2ae19daeef26cb426e54fcbb5e9a857984dafd32ed64750

See more details on using hashes here.

File details

Details for the file innoday-0.1.173b0-py3-none-any.whl.

File metadata

  • Download URL: innoday-0.1.173b0-py3-none-any.whl
  • Upload date:
  • Size: 736.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for innoday-0.1.173b0-py3-none-any.whl
Algorithm Hash digest
SHA256 5b556c8a43f0624602ca5cf5439508bf3640c0de51d03f4dc4746652d5ca9ea1
MD5 5f810336eb24ae160833cc926c4d8b75
BLAKE2b-256 54c2aa96d8e17637093bcdecd5ec9a74496dddf821c38cf9b8b57cc9845f5d31

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page