feat: update skill pack and support vars in repo profile#19
Merged
Conversation
Replace the single dailybot-progress-report skill with the complete DailybotHQ/agent-skill pack (v1.3.0), which includes report, messages, email, health, checkin, kudos, and forms sub-skills under a single dailybot/ directory with a router meta-skill. Co-authored-by: Cursor <cursoragent@cursor.com>
…ore .dailybot/ Allow repos to store custom variables (e.g. release form IDs) in the repo-level profile without triggering unknown-key warnings. Also add .dailybot/ to .gitignore since this repo's own profile is local-only. Co-authored-by: Cursor <cursoragent@cursor.com>
Add vars to the README repo-level profile section and the CONFIGURATION.md schema table so users know they can store custom repo variables without triggering unknown-key warnings. Co-authored-by: Cursor <cursoragent@cursor.com>
Add a "Best practice" subsection explaining the .dailybot_example/ → .dailybot/ copy pattern for onboarding new contributors. Also add the vars key to the example profile template. Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
dailybot-progress-reportskill with a comprehensive skill pack covering all CLI capabilities: reports, check-ins, forms, kudos, messages, email, and healthvarssupport in.dailybot/profile.json— repos can now store custom variables (e.g. release form IDs, deploy checkin IDs) without triggering unknown-key warnings from the CLI.dailybot/to.gitignoresince this repo's own profile is local-onlyDetail
Skill pack upgrade
The old
dailybot-progress-reportskill only covered agent progress reports. The newdailybot/skill pack includes sub-skills for every CLI capability, shared auth resolution docs, an HTTP fallback guide, and a context-gathering shell script.varskey in repo profileThe CLI now recognizes
varsas a valid key in.dailybot/profile.json. It carries the value through without acting on it — skills and scripts in any repo can read custom variables from the profile without warnings. Example:{ "name": "Cursor", "vars": { "release_form_id": "671b6410-...", "deploy_checkin_id": "abc123..." } }Test plan
varsto profile.json produces no warningsvarskey is preserved in the loaded profile dictMade with Cursor