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
12 changes: 6 additions & 6 deletions .claude/skills/dogfood/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ Your goal is to install the published package, exercise every feature, compare e
npm init -y

# Main package
npm install https://github.com/optave/codegraph/releases/download/dev-v$ARGUMENTS/optave-codegraph-$ARGUMENTS.tgz
npm install https://github.com/optave/ops-codegraph-tool/releases/download/dev-v$ARGUMENTS/optave-codegraph-$ARGUMENTS.tgz

# Platform-specific native binary (pick one for the current platform):
# Windows x64:
npm install https://github.com/optave/codegraph/releases/download/dev-v$ARGUMENTS/optave-codegraph-win32-x64-msvc-$ARGUMENTS.tgz
npm install https://github.com/optave/ops-codegraph-tool/releases/download/dev-v$ARGUMENTS/optave-codegraph-win32-x64-msvc-$ARGUMENTS.tgz
# macOS ARM:
npm install https://github.com/optave/codegraph/releases/download/dev-v$ARGUMENTS/optave-codegraph-darwin-arm64-$ARGUMENTS.tgz
npm install https://github.com/optave/ops-codegraph-tool/releases/download/dev-v$ARGUMENTS/optave-codegraph-darwin-arm64-$ARGUMENTS.tgz
# macOS x64:
npm install https://github.com/optave/codegraph/releases/download/dev-v$ARGUMENTS/optave-codegraph-darwin-x64-$ARGUMENTS.tgz
npm install https://github.com/optave/ops-codegraph-tool/releases/download/dev-v$ARGUMENTS/optave-codegraph-darwin-x64-$ARGUMENTS.tgz
# Linux x64:
npm install https://github.com/optave/codegraph/releases/download/dev-v$ARGUMENTS/optave-codegraph-linux-x64-gnu-$ARGUMENTS.tgz
npm install https://github.com/optave/ops-codegraph-tool/releases/download/dev-v$ARGUMENTS/optave-codegraph-linux-x64-gnu-$ARGUMENTS.tgz
```

> **Tip:** To find the latest dev version, run:
Expand Down Expand Up @@ -76,7 +76,7 @@ Your goal is to install the published package, exercise every feature, compare e
```
If the version does **not** match `$ARGUMENTS`, install the correct binary now:
- **Stable release:** `npm install @optave/codegraph-win32-x64-msvc@$ARGUMENTS` (adjust platform suffix)
- **Dev build:** `npm install https://github.com/optave/codegraph/releases/download/dev-v$ARGUMENTS/optave-codegraph-win32-x64-msvc-$ARGUMENTS.tgz`
- **Dev build:** `npm install https://github.com/optave/ops-codegraph-tool/releases/download/dev-v$ARGUMENTS/optave-codegraph-win32-x64-msvc-$ARGUMENTS.tgz`

Verify with `npx codegraph info` in the source repo. Revert `package.json` / `package-lock.json` changes after the session (do not commit them on the fix branch).
7. **Do NOT rebuild the graph yet.** The first phase tests commands against the codegraph source repo without a pre-existing graph.
Expand Down
2 changes: 1 addition & 1 deletion .claude/skills/release/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The CHANGELOG doubles as **release notes** — it's what users see on the GitHub
Add a new section at the top (below the header) following the existing format:

```
## [X.Y.Z](https://github.com/optave/codegraph/compare/vPREVIOUS...vX.Y.Z) (YYYY-MM-DD)
## [X.Y.Z](https://github.com/optave/ops-codegraph-tool/compare/vPREVIOUS...vX.Y.Z) (YYYY-MM-DD)

**One-line summary.** Expanded description of the release highlights — what's new, what's better, what's fixed. This paragraph should tell a user whether they should upgrade and why.

Expand Down
2 changes: 1 addition & 1 deletion .claude/skills/sweep/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ For **each** review comment — including minor suggestions, nits, style feedbac
--body "$(cat <<-'EOF'
Deferred from PR #<number> review.

**Original reviewer comment:** <use the correct permalink format for the comment type: inline review comment → `https://github.com/optave/codegraph/pull/<number>#discussion_r<comment-id>`, top-level review body → `https://github.com/optave/codegraph/pull/<number>#pullrequestreview-<review-id>`, issue-style comment → `https://github.com/optave/codegraph/issues/<number>#issuecomment-<comment-id>`>
**Original reviewer comment:** <use the correct permalink format for the comment type: inline review comment → `https://github.com/optave/ops-codegraph-tool/pull/<number>#discussion_r<comment-id>`, top-level review body → `https://github.com/optave/ops-codegraph-tool/pull/<number>#pullrequestreview-<review-id>`, issue-style comment → `https://github.com/optave/ops-codegraph-tool/issues/<number>#issuecomment-<comment-id>`>

**Context:** <why this is out of scope for the current PR and what the fix entails>
EOF
Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
blank_issues_enabled: false
contact_links:
- name: Questions & Discussions
url: https://github.com/optave/codegraph/discussions
url: https://github.com/optave/ops-codegraph-tool/discussions
about: Ask questions and discuss ideas with the community
- name: Documentation
url: https://github.com/optave/codegraph#readme
url: https://github.com/optave/ops-codegraph-tool#readme
about: Check the README for usage, commands, and configuration
- name: Security Vulnerability
url: https://github.com/optave/codegraph/security/advisories/new
url: https://github.com/optave/ops-codegraph-tool/security/advisories/new
about: Report security vulnerabilities privately (do NOT open a public issue)
2 changes: 1 addition & 1 deletion .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path-to-signatures: "signatures/cla.json"
path-to-document: "https://github.com/optave/codegraph/blob/main/CLA.md"
path-to-document: "https://github.com/optave/ops-codegraph-tool/blob/main/CLA.md"
branch: "cla-signatures"
allowlist: "dependabot[bot],github-actions[bot]"
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ jobs:
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/optave/codegraph.git"
"url": "https://github.com/optave/ops-codegraph-tool.git"
}
}
PKGJSON
Expand Down Expand Up @@ -488,7 +488,7 @@ jobs:
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/optave/codegraph.git"
"url": "https://github.com/optave/ops-codegraph-tool.git"
}
}
PKGJSON
Expand Down
Loading
Loading