dc934ddb6a
* feat(digg): bump POSTS_PER_CLUSTER to 5 and render limit to 3
Match the per-item enrichment cap and inline-display cap used by the
other sources (Reddit, HN, YouTube, TikTok, GitHub all use 5 fetched /
3 displayed). At the previous 3/2 caps the engine routinely truncated
cluster context — a recent run on cli-printing-press lost the Jason
Calacanis quote tweet entirely because the display cut off after Garry
Tan's first two posts.
* feat(digg): rename 'Digg AI 1000' to 'Digg' in user-facing strings
Drop the 'AI 1000' suffix from the footer line, source label, inline
quote attribution ('via Digg'), why_relevant, container, mock title,
SKILL.md source list, and README sources table. Internal code comments
and docstrings still reference the upstream Digg AI 1000 product.
Bumps version to 3.2.1 and adds a CHANGELOG entry covering this rename
and the POSTS_PER_CLUSTER / render-limit bumps from the prior commit.
---------
Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
40 lines
668 B
TOML
40 lines
668 B
TOML
[project]
|
|
name = "last30days-skill"
|
|
version = "3.2.1"
|
|
description = "Multi-source last-30-days research skill"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"requests>=2.32,<3",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9,<10",
|
|
"pytest-cov>=7,<8",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
addopts = [
|
|
"-q",
|
|
"--tb=short",
|
|
]
|
|
|
|
[tool.coverage.run]
|
|
branch = true
|
|
source = ["skills/last30days/scripts", "tests"]
|
|
omit = [
|
|
"skills/last30days/scripts/lib/vendor/*",
|
|
"dist/*",
|
|
]
|
|
|
|
[tool.coverage.report]
|
|
skip_empty = true
|
|
show_missing = true
|
|
omit = [
|
|
"skills/last30days/scripts/lib/vendor/*",
|
|
"dist/*",
|
|
]
|