Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions internal/agents/claude.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Package agents provides interfaces and implementations for spawning AI agents.
//
// claude.go implements the Agent interface for Claude Code CLI.
package agents

Expand Down
2 changes: 2 additions & 0 deletions internal/agents/codex.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Package agents provides interfaces and implementations for spawning AI agents.
//
// codex.go implements the Agent interface for OpenAI Codex CLI.
package agents

Expand Down
2 changes: 2 additions & 0 deletions internal/agents/copilot.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Package agents provides interfaces and implementations for spawning AI agents.
//
// copilot.go implements the Agent interface for GitHub Copilot CLI.
package agents

Expand Down
1 change: 1 addition & 0 deletions internal/analysis/db.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package analysis provides code ownership and bus-factor analysis tools.
package analysis

import (
Expand Down
1 change: 1 addition & 0 deletions internal/analysis/metrics.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package analysis provides code ownership and bus-factor analysis tools.
package analysis

import (
Expand Down
1 change: 1 addition & 0 deletions internal/analysis/report.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package analysis provides code ownership and bus-factor analysis tools.
package analysis

import (
Expand Down
1 change: 1 addition & 0 deletions internal/db/import.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package db provides SQLite-backed storage for nightshift state and snapshots.
package db

import (
Expand Down
1 change: 1 addition & 0 deletions internal/db/migrations.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package db provides SQLite-backed storage for nightshift state and snapshots.
package db

import (
Expand Down
1 change: 1 addition & 0 deletions internal/integrations/agentsmd.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package integrations provides readers for external configuration and task sources.
package integrations

import (
Expand Down
1 change: 1 addition & 0 deletions internal/integrations/claudemd.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package integrations provides readers for external configuration and task sources.
package integrations

import (
Expand Down
1 change: 1 addition & 0 deletions internal/integrations/github.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package integrations provides readers for external configuration and task sources.
package integrations

import (
Expand Down
1 change: 1 addition & 0 deletions internal/integrations/td.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package integrations provides readers for external configuration and task sources.
package integrations

import (
Expand Down
1 change: 1 addition & 0 deletions internal/orchestrator/events.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package orchestrator coordinates AI agents working on tasks.
package orchestrator

import "time"
Expand Down
2 changes: 2 additions & 0 deletions internal/providers/claude.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Package providers defines interfaces and implementations for AI coding agents.
//
// claude.go implements the Provider interface for Claude Code CLI.
package providers

Expand Down
2 changes: 2 additions & 0 deletions internal/providers/codex.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Package providers defines interfaces and implementations for AI coding agents.
//
// codex.go implements the Provider interface for OpenAI Codex CLI.
package providers

Expand Down
2 changes: 2 additions & 0 deletions internal/providers/copilot.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Package providers defines interfaces and implementations for AI coding agents.
//
// copilot.go implements the Provider interface for GitHub Copilot CLI.
package providers

Expand Down
1 change: 1 addition & 0 deletions internal/reporting/run_report.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package reporting generates morning summary reports for nightshift runs.
package reporting

import (
Expand Down
1 change: 1 addition & 0 deletions internal/reporting/run_results.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package reporting generates morning summary reports for nightshift runs.
package reporting

import (
Expand Down
1 change: 1 addition & 0 deletions internal/tasks/register.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package tasks defines task structures and loading from various sources.
package tasks

import (
Expand Down
1 change: 1 addition & 0 deletions internal/tmux/scraper.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package tmux scrapes tmux sessions to detect running AI agent processes and their usage.
package tmux

import (
Expand Down