You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .claude/commands/research.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ description: Research the codebase to understand how something works
6
6
7
7
<!-- ultrathink -->
8
8
9
-
You are tasked with conducting comprehensive research across the `airbyte` CLI codebase to answer the user's question by spawning parallel sub-agents and synthesizing their findings.
9
+
You are tasked with conducting comprehensive research across the `airbyte-agent` CLI codebase to answer the user's question by spawning parallel sub-agents and synthesizing their findings.
10
10
11
11
## Research Question
12
12
@@ -70,7 +70,7 @@ Break down the research question into:
Copy file name to clipboardExpand all lines: .github/workflows/skill-version-bump.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ name: skill-version-bump
3
3
on:
4
4
pull_request:
5
5
paths:
6
-
- 'skills/airbyte-agents/**'
6
+
- 'skills/airbyte-agent/**'
7
7
8
8
permissions:
9
9
contents: read
@@ -27,12 +27,12 @@ jobs:
27
27
echo "::notice::Head is v0.1.0 — treating as bootstrap/reset."
28
28
exit 0
29
29
fi
30
-
if ! base=$(git show "origin/${{ github.base_ref }}":skills/airbyte-agents/SKILL.md 2>/dev/null | ./scripts/skill-version.sh /dev/stdin 2>/dev/null); then
30
+
if ! base=$(git show "origin/${{ github.base_ref }}":skills/airbyte-agent/SKILL.md 2>/dev/null | ./scripts/skill-version.sh /dev/stdin 2>/dev/null); then
31
31
echo "::notice::Base branch has no skill version yet — accepting head=$head as the bootstrap."
32
32
exit 0
33
33
fi
34
34
if [ "$head" = "$base" ]; then
35
-
echo "::error::Skill version not bumped ($base unchanged). Bump skills/airbyte-agents/SKILL.md metadata.version."
35
+
echo "::error::Skill version not bumped ($base unchanged). Bump skills/airbyte-agent/SKILL.md metadata.version."
0 commit comments