Skip to content
Merged
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
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Documentation issue
about: Report a mistake, gap, or unclear section in the docs, README, or examples
title: '[DOCS] '
labels: documentation
assignees: ''

---

**Where**
Link to the page or file (e.g. a https://freshcode-org.github.io/freshdata/ URL,
`README.md`, or an `examples/` script) and the section heading.

**What is wrong or missing**
A clear description of the problem: incorrect statement, code snippet that
doesn't run, broken link, missing explanation, outdated API, etc.

**Suggested fix (optional)**
If you already know what the text or snippet should say, propose it here —
small doc fixes make great first PRs.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true

# Least privilege by default; jobs that need more (nightly alert issue,
# coverage-badge push) declare their own elevated permissions.
permissions:
contents: read

jobs:
quality-fast:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/fetch-fixtures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
schedule:
- cron: "0 6 * * 1" # weekly Monday 06:00 UTC

permissions:
contents: read

jobs:
fetch:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/nightly-real-model.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- cron: "0 4 * * *"
workflow_dispatch:

permissions:
contents: read

jobs:
real-model:
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/plugin-contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
push:
branches: [main]

permissions:
contents: read

jobs:
plugin-contract:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/reproducibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
push:
branches: [main]

permissions:
contents: read

jobs:
reproducibility:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/wheel-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
env:
MAX_WHEEL_BYTES: "2000000"

permissions:
contents: read

jobs:
wheel-guard:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ htmlcov/
.DS_Store
.ipynb_checkpoints/

# AI-assistant working artifacts (plans, task reports) — never committed
.superpowers/

# MkDocs build output
site/

Expand Down
6 changes: 4 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Run `pre-commit install` after cloning. CI mirrors these checks.
# Run `pre-commit install` after cloning. The ruff and mypy hooks match the
# required CI lane; the hygiene hooks (whitespace, YAML/TOML syntax) are
# pre-commit-only. There is deliberately no formatter hook: the codebase is
# not `ruff format`-clean, and CI does not enforce formatting.
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
Expand All @@ -16,7 +19,6 @@ repos:
hooks:
- id: ruff
args: [--fix]
- id: ruff-format

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
Expand Down
110 changes: 0 additions & 110 deletions .superpowers/sdd/task-4-report.md

This file was deleted.

85 changes: 0 additions & 85 deletions .superpowers/sdd/task-5-report.md

This file was deleted.

Loading
Loading