Commit Graph

50 Commits

Author SHA1 Message Date
7f04378cfb agent: Add start-up routine 2025-09-24 22:39:52 +02:00
5aab024189 agent: Fix missing frontmatter 2025-09-24 21:58:52 +02:00
98653c1100 refactor: Enhance project-assistant with Gitea issue management workflow
Add comprehensive issue management protocol to project-assistant configuration
to ensure proper separation between issue creation and implementation.

Key Enhancements:
- Issue Management Protocol: Create → Triage → Plan → Schedule → Implement → Close
- Issue Creation Guidelines: When to create vs. when to implement immediately
- Session Wrap-up Integration: Include issue review in end-of-session checklist
- Example Scenarios: Clear guidance on issue vs. immediate work decisions

Workflow Improvements:
- Gitea-first approach for all feature requests and enhancements
- Strategic planning discipline: issues created but not immediately implemented
- Current session focus: only work on explicitly planned items (Next.md)
- Future enhancement tracking: proper issue documentation for continuity

Updated test count from 20+ to 45+ reflecting current project state.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-24 01:20:42 +02:00
93e762feee feat: Strategic pivot to CLI implementation with comprehensive foundation
Major gap analysis reveals critical missing CLI interface despite solid library foundation.
This commit implements core components and strategic roadmap pivot.

Key Changes:
- NEXT.md: Complete strategic roadmap pivot to CLI-first implementation
- FEATURES.md: Comprehensive USP and architecture documentation
- markitect/ast_cache.py: High-performance AST caching system
- markitect/document_manager.py: Parse-once architecture implementation
- docs/markitect.1: CLI interface manpage documentation

Foundation Status:
- All 45 tests passing (solid library base)
- AST caching with <50% parse time performance goal
- Database integration ready for CLI integration
- TDD8 methodology fully operational

Strategic Pivot:
- Previous: Continue with Issues #2-4 (database expansion)
- New Priority: Issue #5 - CLI Entry Point implementation
- Goal: Transform library capabilities into user-accessible tools

Next Session: Implement CLI interface using Click/Typer framework
to deliver documented vision and core USPs.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-24 01:14:27 +02:00
c6ba9c9308 chore: Remove .claude/settings.local.json from tracking and add to .gitignore
The .claude/settings.local.json file contains Claude Code-specific permission
settings that are user-specific and should not be committed to the repository.

- Remove .claude/settings.local.json from git tracking
- Add .claude/settings.local.json to .gitignore for clean repo state
- Local file remains for user's Claude Code permissions

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-24 00:09:23 +02:00
0053fa68ec refactor: Make tddai framework project-agnostic and fix test configuration
FRAMEWORK DECOUPLING:
- Remove all MarkiTect-specific references from tddai core modules
- Update tddai-assistant.md to use generic examples and language
- Change CLI output from "MarkiTect Issues" to "Project Issues"
- Update coverage_analyzer.py docstring to be project-neutral

CONFIGURATION SYSTEM:
- Make tddai configuration flexible via environment variables
- Add comprehensive documentation for project setup in config.py
- Create .env.tddai and tddai-setup.sh for MarkiTect-specific config
- Support configurable workspace naming (.tddai_workspace default)

TEST INFRASTRUCTURE CLEANUP:
- Fix IssueWriter test failures caused by config validation changes
- Implement _get_test_config() helper for isolated test configurations
- Ensure all 13 IssueWriter tests pass with proper test patterns
- Maintain clean test separation and project independence

FRAMEWORK PORTABILITY:
- TDD8 methodology now completely generic and reusable
- Configuration examples for GitHub/GitLab integration
- Ready for extraction to separate repository when needed
- All 45 tests pass cleanly confirming successful refactoring

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-24 00:04:54 +02:00
ef81266eb1 feat: Implement IssueWriter and formalize TDD8 methodology
SIDEQUEST ACHIEVEMENT:
- Add tddai/issue_writer.py with authenticated PATCH operations for Gitea API
- Comprehensive error handling and authentication via GITEA_TOKEN
- Clean API design: update_issue(), update_issue_title(), close_issue(), etc.
- 13 comprehensive tests covering all authentication and API scenarios
- Full integration with existing 45+ test suite (all tests pass)

METHODOLOGY BREAKTHROUGH:
- Formalize TDD8 cycle: ISSUE-TEST-RED-GREEN-REFACTOR-DOCUMENT-REFINE-PUBLISH
- Create tddai-assistant subagent with comprehensive TDD8 guidance
- Sophisticated sidequest management for blocking vs. supporting scenarios
- Complete workflow from requirements to production-ready functionality

INFRASTRUCTURE MATURITY:
- Evolution from basic TDD to comprehensive development methodology
- Clean separation of concerns and proper integration patterns
- Authoritative guidance for maintaining quality standards
- Intelligent adaptation to dynamic software development needs

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 23:41:43 +02:00
ddcd7f9ebb chore: We are done for today and reached our claude usage limit 2025-09-23 05:03:42 +02:00
76fd150a19 docs: Comprehensive session wrap-up and project status update
**Session Summary:**
Major milestone achieved with successful Issue #1 implementation and
complete TDD infrastructure restoration. All 32 tests now passing with
validated workflow automation.

**Documentation Updates:**
- ProjectDiary.md: Added comprehensive entry for Issue #1 implementation
  and TDD infrastructure fixes with technical details and achievements
- Next.md: Updated priorities for Issue #2 implementation with clear
  strategy and validated tooling readiness
- ProjectStatusDigest.md: Refreshed status with current metrics, completed
  features, and development progress indicators
- project-assistant.md: Anchored standardized wrap-up routine protocol
  for future session continuity

**Key Accomplishments:**
- Issue #1: Database initialization and front matter parsing (production ready)
- TDD Infrastructure: 100% test success rate (32/32 tests passing)
- Foundation: Solid architecture for implementing remaining issues
- Workflow: Proven TDD cycle with comprehensive coverage analysis

**Next Session Ready:**
Clear roadmap for Issue #2 implementation using validated TDD workflow,
building on proven database foundation with AST integration focus.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 04:53:30 +02:00
3e7d2b55d5 fix: Resolve TDD infrastructure test failures and API mismatches
Comprehensive fix for 9 failing TDD tests caused by API mismatches between
test expectations and actual WorkspaceManager implementation.

**Root Cause Analysis:**
- Tests incorrectly passed strings instead of TddaiConfig objects
- API return type mismatches (expected Path, got Workspace objects)
- Missing methods: add_test_to_workspace() and get_workspace_status()
- Incorrect assumptions about WorkspaceStatus enum attributes
- Metadata field name differences (issue_number vs number)

**WorkspaceManager API Fixes:**
- Added add_test_to_workspace(filename, content) method
- Added get_workspace_status() alias for get_status()
- Enhanced error handling for workspace operations

**Test Corrections:**
- Fixed WorkspaceManager initialization to use TddaiConfig objects
- Updated API usage to match Workspace object return types
- Corrected WorkspaceStatus enum handling
- Fixed metadata field expectations
- Updated error message patterns to match actual implementation

**Results:**
- Before: 9 failing tests, 23 passing (28% failure rate)
- After: 0 failing tests, 32 passing (100% success rate)

This restores the TDD infrastructure to full functionality, validating
that our Issue #1 implementation approach was sound and the tooling
is ready for productive development.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 04:46:22 +02:00
8a89cb73c6 test: Add comprehensive test suite for Issue #1 database functionality
Adds 9 comprehensive tests covering all aspects of Issue #1 implementation:

**TestDatabaseInitialization (2 tests):**
- DatabaseManager instantiation and configuration
- Database schema creation with proper table structure

**TestFrontMatterParsing (3 tests):**
- FrontMatterParser instantiation
- Parsing Issue #1 example content with YAML front matter
- Handling markdown content without front matter

**TestIntegratedWorkflow (2 tests):**
- Complete end-to-end workflow with Issue #1 example file
- Multiple file storage and retrieval validation

**TestErrorHandling (2 tests):**
- Graceful handling of invalid YAML front matter
- Exception handling for invalid database paths

All tests validate the exact requirements from Issue #1 specification,
including the provided example markdown content with front matter.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 04:29:35 +02:00
35cbe715a5 feat: Implement Issue #1 - Database initialization and front matter parsing
Complete TDD implementation of core MarkiTect functionality:

**Database Module (markitect/database.py):**
- DatabaseManager class with SQLite database initialization
- markdown_files table with proper schema (id, filename, front_matter, content, created_at)
- Front matter storage as JSON with content separation
- File storage, retrieval, and listing methods
- Comprehensive error handling

**Front Matter Module (markitect/frontmatter.py):**
- FrontMatterParser class with YAML front matter parsing
- Clean separation of metadata from markdown content
- Graceful handling of invalid YAML and missing front matter
- Regex-based parsing with proper delimiter handling

**Dependencies:**
- Added PyYAML for front matter parsing
- Updated pyproject.toml with new dependency

**Test Coverage:**
- 9 comprehensive tests covering all functionality
- Database initialization and schema validation
- Front matter parsing with Issue #1 example content
- Integrated workflow testing (storage/retrieval)
- Error handling for edge cases

**TDD Process:**
- RED phase: 8 failing tests defining requirements
- GREEN phase: Minimal implementation making all tests pass
- Validation: Complete workflow verified with example content

This implementation provides the foundation for all subsequent MarkiTect
features, handling the exact example from Issue #1 specification.

Issue #1: Initialize Database and Store Example Markdown File
coulomb/markitect_project#1

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 04:28:29 +02:00
62105b1993 docs: Add comprehensive digest for test coverage assessment system
Documents the complete implementation and critical bug fix of the test
coverage assessment system including:

- Sophisticated requirement extraction using regex patterns
- Priority-based categorization and keyword matching system
- Integration with TDD workflow via make test-coverage command
- Critical false positive bug fix (33.3% -> 0.0% for untested issues)
- Technical architecture and validation results

This system significantly enhances our TDD workflow by providing
quantitative measurement and actionable recommendations for test
completeness while preventing dangerous false confidence in coverage.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 03:52:50 +02:00
73185f2c96 fix: Correct coverage calculation to return 0% for untested issues
Previously, coverage analysis was incorrectly using keywords from all
existing tests, causing false positives where untested issues showed
coverage percentages instead of 0%.

Changes:
- Only count tests specifically related to the analyzed issue
- Return 0% coverage when no issue-specific tests exist
- Maintain accurate coverage calculation for tested issues

This ensures that Issue #3 correctly shows 0.0% coverage instead of
33.3%, while Issue #11 still correctly shows 100.0% coverage.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 03:48:51 +02:00
e0b4ab0124 fix: Resolve false positive coverage reporting for untested functionality
Major improvements to coverage analysis accuracy:

**Fixed Coverage Calculation Logic:**
- Remove false positive where untested issues showed 100% coverage
- Require actual keyword overlap for coverage validation
- Treat requirements with no extractable keywords as gaps (not covered)
- Changed from assuming coverage if any tests exist to requiring keyword matches

**Enhanced Requirement Extraction:**
- Add patterns for data operations (read, store, save, load, retrieve, fetch)
- Add data handling patterns (file, database, storage, content)
- Add format handling patterns (schema, json, markdown, ast)
- Intelligent analysis of simple issues with enhanced requirement generation
- Title-based requirement extraction for comprehensive coverage

**Stricter Coverage Validation:**
- Requirements without keywords always considered gaps
- No more false positives for completely untested functionality
- Improved gap detection for better accuracy

**Results:**
- Issue #3 now correctly shows 33.3% coverage (was 100% false positive)
- Issue #11 still correctly shows 100% coverage (comprehensive tests)
- More detailed requirement breakdown for simple issues

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 03:43:24 +02:00
f485b24a5a feat: Add comprehensive test coverage assessment system
- Add CoverageAnalyzer class for analyzing functional test coverage against issues
- Intelligent requirement extraction from issue descriptions using regex patterns
- Automatic coverage gap detection with priority classification (critical/important/nice-to-have)
- Smart keyword matching between requirements and existing tests
- Comprehensive CLI interface with make test-coverage NUM=X command
- Detailed recommendations with specific test suggestions and TDD workflow guidance

Features:
- Extracts requirements from issue text patterns (user can, must, should, examples, etc.)
- Analyzes existing test files and methods for coverage keywords
- Calculates coverage percentage based on requirement-to-test matching
- Provides specific test name and file suggestions for gaps
- Prioritizes recommendations by requirement criticality
- Integrates with existing TDD workflow (tdd-start, tdd-add-test)

Usage: make test-coverage NUM=5
Example output shows 28.6% coverage for Issue #5 with specific gap recommendations

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 03:35:20 +02:00
386bafe130 feat: Add make test-new for quick test file template creation
- Add test-new make target for generating test file templates
- Interactive prompt for test name with validation
- Generates structured test class with setup/teardown methods
- Includes basic functionality, edge cases, and error handling placeholders
- Follows TDD best practices with Arrange-Act-Assert pattern
- Auto-generates class names from test names (snake_case to PascalCase)

Usage: make test-new
Then enter test name when prompted (e.g., "schema_validation")

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 03:26:02 +02:00
e18a28aef0 test: Add comprehensive TDD workflow validation tests from Issue #11
- Replace test_issue_11_workflow_integration.py with enhanced TDD validation
- Add test_issue_11_workspace_creation_validation.py for workspace API testing
- Generated through complete TDD workflow validation cycle
- Tests cover workspace creation, status monitoring, error handling, and cleanup
- Currently in red state (9 failing) due to WorkspaceManager API usage - proper TDD
- Tests validate complete workflow: tdd-start → tdd-add-test → tdd-status → tdd-finish

These tests were generated using the validated TDD infrastructure and represent
real validation scenarios for Issue #11: Setup TDD workspace infrastructure.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 03:20:21 +02:00
696ab68c82 feat: Add make test-status for quick test overview without re-running
- Add test-status make target for fast test status checking
- Shows test file count, cache status, and recent failures
- References detailed test_status_report.md for comprehensive analysis
- Uses pytest cache and filesystem info for speed
- Includes helpful commands for detailed status checking

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 03:16:50 +02:00
03ee6463e9 docs: Document subagent infrastructure resolution and environment restoration
- Update ProjectStatusDigest.md with Ubuntu 24.04 environment restoration
- Document operational custom subagent ecosystem with specialized task delegation
- Add automated dependency management system (install-pip.sh, install-depends.sh)
- Mark custom subagent blocking issue as resolved in RelevantClaudeIssues.md
- Update getting started instructions with new installation scripts
- Confirm all 6 subagent types now functional: general-purpose, claude-expert,
  project-assistant, fortune-wisdom-guide, statusline-setup, output-style-setup

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 02:58:36 +02:00
6ec0fc2930 docs: Captured Ubuntu24.04 upgrade 2025-09-23 02:45:54 +02:00
be3902c412 feat: Add Python dependency management and fix test environment
- Add install-pip.sh script for automated Python package installation
- Add pyproject.toml with proper package configuration and setuptools discovery
- Fix virtual environment setup to enable all tests to run successfully
- Tests now pass: 20/20 

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 02:41:32 +02:00
5ec93c1092 agent: Finally found a way to install claude again 2025-09-23 02:24:09 +02:00
7b9d6af5a1 fix: Python 3.6 compatibility for tests
- Replace walrus operator (:=) with traditional assignment in config.py
- Replace datetime.fromisoformat() with strptime() for Python 3.6
- Replace subprocess capture_output and text params with PIPE and universal_newlines
- All tests now pass on Python 3.6.9

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 01:40:37 +02:00
7bdc21d3ef build: Helpers to initially setup the dev env 2025-09-23 01:23:32 +02:00
c657094e08 agent: Needed to reinstall claude on Ubuntu 24.04 2025-09-23 01:21:34 +02:00
ef510bbf00 chore: Updated to Ubuntu 24.04 and created new .venv 2025-09-23 01:19:57 +02:00
086515e071 chore: Keep old venv from ubuntu 18.04 for now just in case. 2025-09-23 01:16:12 +02:00
1c40b7a77d agent: Implemented subagents and claude issue handling assistence 2025-09-22 23:03:31 +02:00
6364bb8447 chore: Change NEXT file to correct filetype 2025-09-22 21:11:38 +02:00
84498e9df7 docs: Add ProjectDiary 2025-09-22 21:08:08 +02:00
001343c208 docs: add NEXT.txt with tomorrow's development plan
- Primary focus: validate tddai infrastructure robustness
- Plan to use tddai to test tddai itself (dogfooding)
- Ensure foundation is solid before building new features
- Include secondary opportunities for core MarkiTect development
- Set clear success criteria for infrastructure validation

Ready for tomorrow's session focused on testing and validation.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 02:30:17 +02:00
a0522fd534 docs: update ProjectStatusDigest with TDD infrastructure
- Add comprehensive TDD Infrastructure section with tddai library
- Update Current State to reflect complete TDD implementation
- Update Development Tools to include pytest and TDD automation
- Expand Repository Structure to show tddai library and CLI
- Add complete TDD Workflow section with tdd- prefixed targets
- Update Issue Management section with Gitea API integration
- Reflect 20+ passing tests and AI-assisted development cycle
- Update getting started guide with new workflow commands

ProjectStatusDigest now accurately represents the mature TDD-enabled
development environment with comprehensive tooling and automation.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 02:23:34 +02:00
bc00cc7eb3 docs: add ProjectDiary entry for TDD infrastructure implementation
- Document complete tddai Python library implementation
- Summarize key achievements: 5 core modules, CLI interface, 20 passing tests
- Record transition from shell-based to Python library architecture
- Note tdd- prefix renaming and proper TDD green-state practices
- Estimate 3-4 hours development time with ~100K AI tokens used
- Maintain reverse chronological order for diary entries

This completes the documentation of the major TDD infrastructure milestone.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 02:20:08 +02:00
68af98049e fix: update tests to use renamed tdd- prefixed make targets
- Update test_make_workspace_status_command → test_make_tdd_status_command
- Update test_make_add_test_command_without_workspace → test_make_tdd_add_test_command_without_workspace
- Change test subprocess calls from 'workspace-status' to 'tdd-status'
- Change test subprocess calls from 'add-test' to 'tdd-add-test'

All 20 tests now pass successfully with the new target names.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 02:17:04 +02:00
41193d0746 refactor: rename workspace targets to TDD Workspace with tdd- prefix
- Rename "Issue Workspace" category to "TDD Workspace" in help output
- Add tdd- prefix to all workspace-related targets:
  - start-issue → tdd-start
  - add-test → tdd-add-test
  - workspace-status → tdd-status
  - finish-issue → tdd-finish
- Update .PHONY declarations for new target names
- Update all CLI output messages to reference new target names
- Maintain backward compatibility in CLI functionality

This provides clearer naming that emphasizes the TDD focus and avoids
confusion with general issue management targets.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 02:14:57 +02:00
84161e77a9 fix: update Makefile targets to use venv Python with PYTHONPATH
- Fix test target to run with PYTHONPATH=. for tddai module discovery
- Update all tddai CLI targets to use $(VENV_PYTHON) instead of python3
- Add PYTHONPATH=. to all CLI commands for proper module resolution
- Ensure all targets depend on $(VENV)/bin/activate

Resolves issue where 'make test' was failing due to module import errors.
All 20 tests now pass successfully.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 02:07:05 +02:00
5155a548eb feat: implement tddai Python library for TDD workspace management
- Create comprehensive tddai package with workspace, issue fetcher, and test generator modules
- Add Python CLI interface (tddai_cli.py) to replace complex Makefile shell logic
- Update Makefile targets to use Python CLI for better maintainability
- Implement proper behavior-based tests instead of file existence checks
- Add workspace lifecycle management (create, active, finish, cleanup)
- Add issue fetching from Gitea API with error handling
- Add comprehensive test coverage with 19 passing tests
- Support environment variable configuration for different deployments

This addresses issue #11: Setup TDD workspace infrastructure
All tests pass and the system achieves green state before commit.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 02:04:19 +02:00
b03160437e build: Add issue workspace system for structured TDD workflow
- Add start-issue NUM=X target to create structured issue workspaces
- Add add-test target for iterative test generation within workspace
- Add workspace-status target to monitor active workspace state
- Add finish-issue target to move tests to main and cleanup workspace
- Create workspace structure with requirements.md and test_plan.md templates
- Include .markitect_workspace/ in .gitignore for temporary development files
- Enable multiple test generation per issue with proper organization
- Provide guided workflow for issue breakdown and test planning

This replaces single test generation with comprehensive workspace approach
supporting complex issues requiring multiple test scenarios.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 01:28:55 +02:00
0043bc6cef build: Add test-from-issue target for TDD workflow
- Add test-from-issue NUM=X target to generate test skeletons from gitea issues
- Integrate Claude Code requirement checking and issue data fetching
- Provide comprehensive test generation guidance with TDD best practices
- Include issue details, test naming conventions, and pytest requirements
- Enable systematic conversion of issue backlog into test-driven development
- Support error handling for non-existent issues

This establishes the core infrastructure for issue-driven TDD workflow

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 01:17:54 +02:00
adf48c704c build: Add gitea issue management targets
- Add list-issues target for comprehensive issue overview
- Add show-issue NUM=X target for detailed issue inspection
- Add list-open-issues target for active backlog filtering
- Configure gitea API endpoints with proper URL handling
- Include error handling and jq fallback support
- Enable command-line access to issue tracking and backlog

This establishes foundation for issue-driven TDD workflow

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 01:11:00 +02:00
15cd8130a4 docs: Add ProjectDiary.md for tracking development milestones
- Create ProjectDiary.md with reverse chronological milestone tracking
- Add make add-diary-entry target with Claude Code prerequisite check
- Include initial entry documenting today's infrastructure setup
- Track contributors, time estimates, and AI token usage
- Provide structured format for future development logging
- Guide users through diary entry creation process

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 00:49:23 +02:00
72195d0aa5 docs: Add ProjectStatusDigest.md with automated update target
- Create comprehensive project status digest documentation
- Add make update-digest target with Claude Code prerequisite check
- Include current architecture, features, and development approach
- Document repository structure and getting started guide
- Add digest update workflow for version releases

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 00:37:04 +02:00
eab65c74b5 build: Enhance venv-status to detect shell activation state
- Add venv-status target to check current shell activation
- Detect if venv exists but not activated vs actively running
- Handle different venv active vs project venv scenarios
- Use realpath for robust path comparison across symlinks
- Clean output with --no-print-directory flag
- Integrate status check into help target

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 00:18:24 +02:00
ad35e4f754 build: Add comprehensive Makefile for development workflow
- Setup and installation targets (setup, install, dev)
- Development targets (test, build, lint, format)
- Maintenance targets (update, status, clean, check-deps)
- Automatic virtual environment management
- Smart upstream update with submodule handling

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-21 23:46:46 +02:00
f8aed9951d Update wiki submodule to latest
🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-21 23:24:37 +02:00
49d3f5f295 Add wiki as submodule tracking main 2025-09-16 23:28:11 +02:00
089787532d Add wiki as submodule tracking main 2025-09-16 23:27:40 +02:00
189b75b3e8 chore: gitignore and repo cleanup 2025-09-16 03:04:18 +02:00
babd121564 chore: first commit 2025-09-16 02:56:34 +02:00