-
Notifications
You must be signed in to change notification settings - Fork 0
feat: upgrade all 35 skills to A grade (90+) #6
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
Open
jeremylongshore
wants to merge
1
commit into
main
Choose a base branch
from
feat/gold-standard-skills-upgrade
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
42 changes: 42 additions & 0 deletions
42
003-skills/.claude/skills/nixtla-anomaly-detector/references/examples.md
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,42 @@ | ||
| ## Examples | ||
|
|
||
| ### Example 1: Detect outliers in website traffic | ||
|
|
||
| **Input** (`traffic.csv`): | ||
| ```csv | ||
| unique_id,ds,y | ||
| website_1,2024-01-01,1000 | ||
| website_1,2024-01-02,1050 | ||
| website_1,2024-01-03,300 | ||
| website_1,2024-01-04,980 | ||
| ``` | ||
|
|
||
| **Command**: | ||
| ```bash | ||
| python {baseDir}/scripts/detect_anomalies.py --input traffic.csv | ||
| ``` | ||
|
|
||
| **Output** (anomalies.csv): | ||
| ```csv | ||
| unique_id,ds,y,anomaly_type | ||
| website_1,2024-01-03,300,outlier | ||
| ``` | ||
|
|
||
| ### Example 2: Identify trend break in sales data | ||
|
|
||
| **Input** (`sales.csv`): | ||
| ```csv | ||
| unique_id,ds,y | ||
| store_1,2023-12-28,50 | ||
| store_1,2023-12-29,55 | ||
| store_1,2023-12-30,60 | ||
| store_1,2023-12-31,150 | ||
| store_1,2024-01-01,145 | ||
| ``` | ||
|
|
||
| **Command**: | ||
| ```bash | ||
| python {baseDir}/scripts/detect_anomalies.py -i sales.csv -o sales_anomalies.csv | ||
| ``` | ||
|
|
||
| **Output**: Detects trend break at 2023-12-31 |
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
29 changes: 29 additions & 0 deletions
29
003-skills/.claude/skills/nixtla-arbitrage-detector/references/examples.md
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,29 @@ | ||
| ## Examples | ||
|
|
||
| ### Example 1: Profitable Arbitrage Found | ||
|
|
||
| **Scenario**: Same election event on both platforms | ||
|
|
||
| ``` | ||
| Event: "Will candidate X win the 2024 election?" | ||
| Polymarket: YES = 0.45, NO = 0.55 | ||
| Kalshi: YES = 0.52, NO = 0.48 | ||
|
|
||
| Strategy: Buy Polymarket YES + Kalshi NO | ||
| Cost: 0.45 * 1.02 + 0.48 * 1.01 = 0.459 + 0.485 = 0.944 | ||
| Guaranteed Return: $1.00 | ||
| Profit: $0.056 (5.9%) | ||
| ``` | ||
|
|
||
| ### Example 2: No Arbitrage | ||
|
|
||
| **Scenario**: Prices are efficiently aligned | ||
|
|
||
| ``` | ||
| Event: "Will it rain tomorrow in NYC?" | ||
| Polymarket: YES = 0.50, NO = 0.50 | ||
| Kalshi: YES = 0.50, NO = 0.50 | ||
|
|
||
| Cost of any strategy > $1.00 after fees | ||
| Result: No profitable arbitrage | ||
| ``` |
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
28 changes: 28 additions & 0 deletions
28
003-skills/.claude/skills/nixtla-batch-forecaster/references/examples.md
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,28 @@ | ||
| ## Examples | ||
|
|
||
| ### Example 1: Forecast 50 Daily Contracts | ||
|
|
||
| ```bash | ||
| python {baseDir}/scripts/batch_forecast.py contracts.csv \ | ||
| --horizon 14 \ | ||
| --freq D \ | ||
| --batch-size 10 \ | ||
| --output-dir forecasts/ | ||
| ``` | ||
|
|
||
| **Output**: | ||
| ``` | ||
| Batch Forecast Complete | ||
| Series forecasted: 50/50 | ||
| Success rate: 100.0% | ||
| ``` | ||
|
|
||
| ### Example 2: Hourly Portfolio with Aggregation | ||
|
|
||
| ```bash | ||
| python {baseDir}/scripts/batch_forecast.py portfolio.csv \ | ||
| --horizon 24 \ | ||
| --freq H \ | ||
| --aggregate \ | ||
| --output-dir portfolio_forecasts/ | ||
| ``` |
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.
3. Nonstandard frontmatter fails ci
🐞 Bug✓ CorrectnessAgent Prompt
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools