Skip to content
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a53d0a8
feat(01-01): project scaffold, pyproject.toml, and package structure
coder-ishan Feb 26, 2026
b4b1f02
feat(01-01): Fernet crypto module and ConfigManager
coder-ishan Feb 26, 2026
fa2d6b7
feat(01-01): setup wizard CLI with interactive + non-interactive modes
coder-ishan Feb 26, 2026
f42c225
docs(01-01): plan complete — summary and roadmap update
coder-ishan Feb 26, 2026
9162af0
fix(01-01): address three valid review findings
coder-ishan Feb 26, 2026
296c390
wip: phase-01 paused — wave 2 PRs raised, review fixes pending
coder-ishan Feb 26, 2026
b4d81c8
fix(naming): standardise on 'ingot' throughout
coder-ishan Feb 26, 2026
2d11407
feat(01-02): SQLite engine (WAL), all 11 DB models, Alembic migration…
coder-ishan Feb 26, 2026
67cb19f
docs(02): research phase 2 core pipeline scout through writer
coder-ishan Feb 26, 2026
17485da
docs: update STATE.md and add Phase 2 planning artifacts
coder-ishan Feb 26, 2026
3ed3401
feat(01-03): LLMClient (LiteLLM + retry + XML fallback) and exception…
coder-ishan Feb 26, 2026
013f5a5
Add Pylint workflow for Python code analysis
coder-ishan Feb 26, 2026
7c78aa3
chore: add .gitignore, exclude .planning from remote
coder-ishan Feb 26, 2026
c2f6f94
chore: untrack .planning from remote
coder-ishan Feb 26, 2026
7555421
fix(ci): use Python 3.11+, install project deps, exclude alembic from…
coder-ishan Feb 26, 2026
fb3ef34
fix(ci): add missing docstrings and .pylintrc to pass pylint
coder-ishan Feb 26, 2026
89b0fdf
fix(ci): fix real pylint issues and tune .pylintrc for project patterns
coder-ishan Feb 26, 2026
5248739
fix(ci): move deferred import to top-level in cli/__init__.py
coder-ishan Feb 26, 2026
4d5fbc0
test(phase-01): add complete Phase 1 test suite with 80%+ coverage
coder-ishan Feb 26, 2026
3208a60
docs(phase-01): complete 01-05 SUMMARY.md and update STATE.md
coder-ishan Feb 26, 2026
95729ca
docs(phase-01): complete phase execution — verification passed 10/10
coder-ishan Feb 26, 2026
9e589ba
chore: remove .planning/ from version control
coder-ishan Feb 26, 2026
0bc5b66
Merge branch 'main' into feature/01-01-config-crypto
coder-ishan Feb 26, 2026
98803bc
fix(review): address 7 valid findings from Copilot PR review
coder-ishan Feb 26, 2026
5f97791
docs: add README with project overview and setup guide
coder-ishan Feb 26, 2026
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
24 changes: 24 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Pylint

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -e .
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py' | grep -v '^alembic/')
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Planning artifacts (local only)
.planning/

# Python
__pycache__/
*.py[cod]
.venv/

# Claude
.claude/
155 changes: 0 additions & 155 deletions .planning/PROJECT.md

This file was deleted.

Loading