-
Notifications
You must be signed in to change notification settings - Fork 0
fix(mcp-server + connectors): use public SDK API + parser fixes #87
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
Closed
KooshaPari
wants to merge
24
commits into
fix/focalpoint-observably-vendor
from
fix/mcp-tools-private-access-20260529
Closed
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
1cff1b4
chore: cleanup finished claude worktree sessions (#81)
KooshaPari 86c50f2
fix(CI): pin trufflehog setup action SHA (#85)
KooshaPari f50a93f
chore(workflows): FocalPoint safe audit normalization (#86)
KooshaPari 5b939a1
chore(workflows): FocalPoint safe audit normalization (r2, parse-vali…
KooshaPari 652a12f
chore(workflows): FocalPoint safe audit normalization (r4, parse-vali…
KooshaPari 1ee8ae8
fix(focalpoint): vendor observability macro crate
KooshaPari a835eeb
fix(focalpoint): repair all-features MCP build
KooshaPari 53a37a7
fix(connectors): notion/readwise parsers handle single-page + empty +…
7146921
fix(mcp-server): use public Tools::list_tools API in http_sse + webso…
bcd4b6f
chore: re-trigger mergeability check
KooshaPari 19eb9b2
chore(workflows): FocalPoint safe audit normalization (r4, parse-vali…
KooshaPari ee69861
docs(AgilePlus): 2026-06-05 hygiene scorecard (#94)
KooshaPari 34e58a1
fix(focus-mcp-server): Message::text returns Message, not Result (#93)
KooshaPari 4df564b
ci(workspace): clone sibling PhenoObservability for cross-repo deps (…
KooshaPari 8b7dfd9
docs(governance): add canonical background-agent policy file (#97)
KooshaPari 4d2d5e2
ci(workflows): fix trufflehog rot in trufflehog.yml (#100)
KooshaPari a5cef31
ci(scorecard): use reusable workflow from phenotype-shared
KooshaPari 0e143fb
chore: remove placeholder STATUS.md (#101)
KooshaPari b0991b2
chore(governance): confirm shared CODEOWNERS template is in use
KooshaPari 9898d3c
chore(FocalPoint): hygiene bundle (#103)
KooshaPari 485fbff
chore(stage-4): add Justfile
e902c33
chore(stage-5): add docs/SSOT.md (architectural decision register)
7b78b5d
chore(grade): apply fleet-wide grading framework
KooshaPari 0865782
Merge origin/main into PR #87 branch
KooshaPari 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
Submodule agent-a000e7f64ef518c90
deleted from
c36359
Submodule agent-af4a36eeef58e5fdb
deleted from
c36359
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 |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| root = true | ||
|
|
||
| [*] | ||
| indent_style = space | ||
| indent_style = tab | ||
| indent_size = 2 | ||
| end_of_line = lf | ||
| charset = utf-8 | ||
|
|
||
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
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
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 |
|---|---|---|
| @@ -1,34 +1,10 @@ | ||
| name: Scorecard | ||
|
|
||
| name: OpenSSF Scorecard | ||
| on: | ||
| push: | ||
| branches: [main, master] | ||
| branches: [main] | ||
| schedule: | ||
| - cron: "0 0 * * 0" | ||
|
|
||
| - cron: '17 3 * * 6' | ||
| permissions: read-all | ||
|
|
||
| jobs: | ||
| scorecard: | ||
| name: Scorecard analysis | ||
| runs-on: ubuntu-24.04 | ||
| permissions: | ||
| security-events: write | ||
| id-token: write | ||
| contents: read | ||
| actions: read | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||
| with: | ||
| persist-credentials: false | ||
| - name: Run Scorecard | ||
| uses: ossf/scorecard-action@v2.4.4 | ||
| with: | ||
| results_file: results.sarif | ||
| results_format: sarif | ||
| publish_results: true | ||
| - name: Upload SARIF results | ||
| uses: github/codeql-action/upload-sarif@v3 | ||
| with: | ||
| sarif_file: results.sarif | ||
| uses: KooshaPari/phenotype-shared/.github/workflows/reusable-scorecard.yml@72b9c6cbdb24c49189b0e7c7395d874830d1ed87 |
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 |
|---|---|---|
| @@ -1,20 +1,28 @@ | ||
| name: Trufflehog Secrets Scan | ||
| name: TruffleHog Secrets Scan | ||
| permissions: | ||
| contents: read | ||
| pull-requests: read | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
|
|
||
| jobs: | ||
| trufflehog: | ||
| runs-on: ubuntu-24.04 | ||
| name: TruffleHog scan | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 | ||
| with: | ||
| fetch-depth: 0 | ||
| - uses: trufflehog/actions/setup@main | ||
| - run: trufflehog github --only-verified --no-update | ||
| env: | ||
| # | ||
| - uses: trufflesecurity/trufflehog@75add79b929b263dae147d2e5bcf0daf292165cf | ||
| with: | ||
| path: ./ | ||
| base: ${{ github.event.repository.default_branch }} | ||
| head: HEAD | ||
| extra_args: --only-verified --fail --no-update |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| # Justfile — task runner for the FocalPoint project | ||
| # See https://just.systems/man/en/ | ||
|
|
||
| set dotenv-load | ||
|
|
||
| _default: | ||
| @just --list | ||
|
|
||
| # Run all CI checks locally | ||
| ci: fmt-check lint test build | ||
| @echo "✓ CI checks pass" | ||
|
|
||
| # Format code | ||
| fmt: | ||
| cargo fmt --all | ||
|
|
||
| # Check formatting | ||
| fmt-check: | ||
| cargo fmt --all -- --check | ||
|
|
||
| # Lint | ||
| lint: | ||
| cargo clippy --all-targets --all-features -- -D warnings | ||
|
|
||
| # Run tests | ||
| test: | ||
| cargo test --all-features | ||
|
|
||
| # Build release | ||
| build: | ||
| cargo build --release | ||
|
|
||
| # Audit dependencies for security advisories | ||
| audit: | ||
| cargo deny check advisories | ||
|
|
||
| # Check licenses | ||
| licenses: | ||
| cargo deny check licenses | ||
|
|
||
| # Clean build artifacts | ||
| clean: | ||
| cargo clean |
This file was deleted.
Oops, something went wrong.
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
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
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.
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.
CI clones obsolete sibling repo
Medium Severity
The workflow clones
PhenoObservabilitybeside the workspace even thoughphenotype-observably-macrosis vendored and connectors use the workspace dependency. An unnecessary clone can fail CI on network or access errors without helping the build.Reviewed by Cursor Bugbot for commit 0865782. Configure here.