Skip to content

Commit 09e40ff

Browse files
committed
more changes
1 parent 4e9a2f3 commit 09e40ff

4 files changed

Lines changed: 63 additions & 35 deletions

File tree

.agents/config/provider.yaml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
# Squads Provider Configuration
22
# Selected during: squads init
33

4-
provider: claude
4+
# provider: claude
5+
6+
default_engine: anthropic/claude-3-5-sonnet-20240620
7+
providers:
8+
anthropic:
9+
# Use the specific model version often assigned to free tiers
10+
# 'latest' can sometimes point to models with higher tier requirements
11+
api_key: ${{ secrets.ANTHROPIC_API_KEY }}
12+
models:
13+
- claude-3-5-sonnet-20240620
14+
- claude-3-haiku-20240307
15+
16+
# Optimization for Free Tier Rate Limits
17+
settings:
18+
# Telling the agent to be less 'verbose' to save tokens
19+
max_tokens: 4096
20+
temperature: 0.7
21+
# If gh-aw supports retry logic, enable it for rate limit (429) errors
22+
retry_on_ratelimit: true

.claude/settings.json

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
{
2-
"hooks": {
3-
"SessionStart": [
4-
{
5-
"hooks": [
6-
{
7-
"type": "command",
8-
"command": "squads status",
9-
"timeout": 10
10-
},
11-
{
12-
"type": "command",
13-
"command": "squads memory sync --no-push",
14-
"timeout": 15
15-
}
16-
]
17-
}
18-
],
19-
"Stop": [
20-
{
21-
"hooks": [
22-
{
23-
"type": "command",
24-
"command": "squads memory sync --push",
25-
"timeout": 15
26-
}
27-
]
28-
}
29-
]
30-
}
31-
}
1+
// {
2+
// "hooks": {
3+
// "SessionStart": [
4+
// {
5+
// "hooks": [
6+
// {
7+
// "type": "command",
8+
// "command": "squads status",
9+
// "timeout": 10
10+
// },
11+
// {
12+
// "type": "command",
13+
// "command": "squads memory sync --no-push",
14+
// "timeout": 15
15+
// }
16+
// ]
17+
// }
18+
// ],
19+
// "Stop": [
20+
// {
21+
// "hooks": [
22+
// {
23+
// "type": "command",
24+
// "command": "squads memory sync --push",
25+
// "timeout": 15
26+
// }
27+
// ]
28+
// }
29+
// ]
30+
// }
31+
// }

.github/workflows/researcher.lock.yml

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/researcher.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88

99
permissions:
1010
contents: read
11+
issues: read
12+
pull-requests: read
1113

1214
engine: claude
1315

@@ -17,6 +19,7 @@ safe-outputs:
1719

1820
tools:
1921
web: {}
22+
github: {}
2023
---
2124

2225
# Intelligence Squad: Market Lead
@@ -28,11 +31,16 @@ You are the **Intel Lead**. Your mission is to identify one high-value, browser-
2831

2932
## Task
3033
1. **Research:** Use the `web` tool to find a paid utility or a bad UX website that we can replace with a clean, local-first HTML/JS tool.
31-
2. **Execute:** Use the `create-issue` safe-output to propose the tool.
34+
2. Use the `write` tool to save the research summary to:
35+
`.agents/memory/research/analyst/state.md`
36+
3. **Execute:** Use the `create-issue` safe-output to propose the tool.
3237

3338
## Proposal Requirements
3439
- **Title:** [PROPOSAL] - [Tool Name]
3540
- **Body:**
3641
- **The Gap:** Why is this tool needed?
3742
- **The Tech:** Which Web APIs (e.g., Canvas, Web Workers) will we use?
38-
- **Complexity:** 1-10.
43+
- **Complexity:** 1-10.
44+
45+
## Technical Constraint
46+
The tool MUST be viable using only Browser APIs (No Node.js, No Backend).

0 commit comments

Comments
 (0)