-
Notifications
You must be signed in to change notification settings - Fork 0
release: v0.1.0 #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
release: v0.1.0 #10
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| name: Release | ||
|
|
||
| on: | ||
| push: | ||
| tags: | ||
| - "v*" | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| build: | ||
| name: Build wheel + sdist | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: "3.11" | ||
| - name: Install build | ||
| run: python -m pip install --upgrade pip build | ||
| - name: Build distribution | ||
| run: python -m build | ||
| - name: Upload artifacts | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: dist | ||
| path: dist/ | ||
|
|
||
| publish: | ||
| name: Publish to PyPI (Trusted Publishing) | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| # Trusted Publishing requires id-token: write. Configured on PyPI at | ||
| # https://pypi.org/manage/project/yc-ai-pulse/settings/publishing/ | ||
| # against this repo + this workflow filename. | ||
| permissions: | ||
| id-token: write | ||
| environment: | ||
| name: pypi | ||
| url: https://pypi.org/p/yc-ai-pulse | ||
| steps: | ||
| - uses: actions/download-artifact@v4 | ||
| with: | ||
| name: dist | ||
| path: dist/ | ||
| - uses: pypa/gh-action-pypi-publish@release/v1 | ||
|
|
||
| github-release: | ||
| name: Attach artifacts to GitHub release | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: write | ||
| steps: | ||
| - uses: actions/download-artifact@v4 | ||
| with: | ||
| name: dist | ||
| path: dist/ | ||
| - name: Upload to GitHub release | ||
| env: | ||
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| TAG_NAME: ${{ github.ref_name }} | ||
| REPO: ${{ github.repository }} | ||
| run: | | ||
| gh release upload "$TAG_NAME" dist/* --repo "$REPO" --clobber |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,29 +29,42 @@ A Chrome extension wraps two flows: *(a)* analyze the whole batch, *(b)* deep-di | |
|
|
||
| | Phase | Surface | Status | | ||
| |---|---|---| | ||
| | 0 | Repo bootstrap, secrets hygiene, CI | 🟡 in progress | | ||
| | 1 | CLI + dashboard | ⬜ planned | | ||
| | 0 | Repo bootstrap, secrets hygiene, CI | ✅ shipped | | ||
| | 1 | CLI + dashboard with anti-hallucination Layer 1 | ✅ **v0.1.0** | | ||
| | 2 | `.pptx` + `.docx` reports | ⬜ planned | | ||
| | 3 | Chrome extension | ⬜ planned | | ||
|
|
||
| See [BACKLOG.md](BACKLOG.md) for the working backlog and `docs/decisions/` for architecture decisions. | ||
| See [CHANGELOG.md](CHANGELOG.md) for what 0.1.0 includes, [BACKLOG.md](BACKLOG.md) for the working backlog, and `docs/decisions/` for architecture decisions. | ||
|
|
||
| ## Quickstart (Phase 1, when shipped) | ||
| ## Quickstart (v0.1.0) | ||
|
|
||
| ```bash | ||
| pipx install yc-ai-pulse # or: uv tool install yc-ai-pulse | ||
| ycai run --depth quick # ~5 min on Claude Max subscription | ||
| ycai dashboard runs/2026-*-*/ # opens dashboard.html in your browser | ||
| ``` | ||
| pipx install yc-ai-pulse # or: uv tool install yc-ai-pulse | ||
|
|
||
| By default `yc-ai-pulse` uses the [Claude Agent SDK](https://github.com/anthropics/anthropic-sdk-python) against your Claude Max subscription. To pay-per-run instead: | ||
| # Coverage probe only (no LLM cost) — fetches the latest batch and shows | ||
| # what's analyzable. Headline: % of YC batch covered, with the dropped | ||
| # register naming every excluded company. | ||
| ycai run-coverage --batch winter-2026 --yc-official-count 196 | ||
|
|
||
| ```bash | ||
| # Full enrichment via your Claude Max subscription (~6 min on W26, ~free). | ||
| # 95% high-confidence rate. Renders the dashboard with capability heatmap, | ||
| # tech-stack and OSS-posture breakdowns. Refuses to write the dashboard | ||
| # if any cited URL is dead. | ||
| ycai run-coverage --batch winter-2026 --yc-official-count 196 --enrich | ||
|
|
||
| # Pay-per-token instead of subscription: | ||
| export ANTHROPIC_API_KEY=sk-ant-... | ||
| ycai run --depth full | ||
| ycai run-coverage --batch winter-2026 --yc-official-count 196 --enrich | ||
|
|
||
| # Resume an interrupted run (quota wall, crash, network blip): | ||
| ycai resume runs/2026-05-01-XXXXXX | ||
|
|
||
| # Re-render the dashboard from existing artifacts at zero LLM cost | ||
| # (useful when the dashboard layout changes): | ||
| ycai dashboard runs/2026-05-01-XXXXXX | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| ``` | ||
|
|
||
| See [`docs/`](docs/) for the full guide. | ||
| A real run on YC W26 is checked in as a working example: see [`examples/output/dashboard-w26-pr4-2026-05-01.html`](examples/output/dashboard-w26-pr4-2026-05-01.html). The full quality writeup is in [`docs/QUALITY_REPORT_W26.md`](docs/QUALITY_REPORT_W26.md). | ||
|
|
||
| ## Anti-hallucination guarantees | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,4 +3,4 @@ | |
| Phase 0 stub. Feature modules land in subsequent PRs. | ||
| """ | ||
|
|
||
| __version__ = "0.0.1" | ||
| __version__ = "0.1.0" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The placeholder date in the example command '2026-05-01' should be replaced with a generic placeholder or variable to avoid confusion for users running this command on different dates.