-
Notifications
You must be signed in to change notification settings - Fork 7.1k
feat: add OpenClaw agent integration #1861
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
AIstar007
wants to merge
16
commits into
github:main
Choose a base branch
from
AIstar007:main
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.
+222
−0
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
11a6547
Update __init__.py
AIstar007 6e9d618
Add OpenClaw support to create-release-packages.sh
AIstar007 255a069
Add OpenClaw agent to release package script
AIstar007 1e6edc8
Update update-agent-context.sh
AIstar007 ce47510
Update update-agent-context.sh
AIstar007 af22694
Update AGENTS.md
AIstar007 1adb19d
Add skill file template for Spec Kit
AIstar007 e171536
Add Spec-Driven Development workflow documentation
AIstar007 1fc77ef
Update README.md
AIstar007 7fee233
Potential fix for pull request finding
AIstar007 f371612
Update templates/skill-file-template.md
AIstar007 886dd98
Update src/specify_cli/__init__.py
AIstar007 bce8610
Update README.md
AIstar007 e8f758c
Update AGENTS.md
AIstar007 fa584ed
Merge branch 'main' into main
AIstar007 2f7fcf3
Update .github/workflows/scripts/create-release-packages.ps1
AIstar007 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
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
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
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,45 @@ | ||
| --- | ||
| name: speckit | ||
| description: Full Spec-Driven Development (SDD) workflow powered by github/spec-kit. Use speckit-specify to start a feature, then speckit-plan, speckit-tasks, and speckit-implement in sequence. | ||
| metadata: | ||
| author: github-spec-kit | ||
| source: https://github.com/github/spec-kit | ||
| version: 1.0.0 | ||
| --- | ||
AIstar007 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| # Spec Kit — Spec-Driven Development | ||
|
|
||
| This skill provides the complete Spec-Driven Development workflow from [github/spec-kit](https://github.com/github/spec-kit). | ||
| Individual commands are available as separate skills in this directory — each one maps to a phase of the SDD process. | ||
|
|
||
| ## Workflow Order | ||
|
|
||
| Always follow this sequence — never skip phases: | ||
|
|
||
| 1. **speckit-constitution** — Establish project governing principles *(run once per project)* | ||
| 2. **speckit-specify** — Turn a feature description into a structured spec | ||
| 3. **speckit-clarify** — Resolve ambiguities before planning *(optional but recommended)* | ||
| 4. **speckit-plan** — Create a phased technical implementation plan | ||
| 5. **speckit-analyze** — Cross-artifact consistency check *(optional, run after tasks)* | ||
| 6. **speckit-tasks** — Break the plan into ordered, executable tasks | ||
| 7. **speckit-implement** — Execute tasks one by one | ||
| 8. **speckit-checklist** — Post-implementation quality checklist | ||
|
|
||
| ## Core Rules | ||
|
|
||
| - Read `.specify/memory/constitution.md` before every coding decision | ||
| - Show the spec summary to the user and wait for approval before planning | ||
| - Show task count to the user and wait for approval before implementing | ||
| - Use `.specify/scripts/bash/` (Linux/macOS) or `.specify/scripts/powershell/` (Windows) for all file and branch operations | ||
| - Never create, move, or delete files in `specs/` without explicit user instruction | ||
|
|
||
| ## Key File Locations | ||
|
|
||
| | File | Purpose | | ||
| |------|---------| | ||
| | `.specify/memory/constitution.md` | Project governing principles — read before every decision | | ||
| | `specs/<feature>/spec.md` | Feature specification created by `speckit-specify` | | ||
| | `specs/<feature>/plan.md` | Implementation plan created by `speckit-plan` | | ||
| | `specs/<feature>/tasks.md` | Task breakdown created by `speckit-tasks` | | ||
| | `.specify/templates/` | Base templates for spec, plan, tasks, and checklist artifacts | | ||
| | `.specify/scripts/` | Automation scripts for branch and file management | | ||
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,10 @@ | ||
| <!-- | ||
| NOTE: This file is intentionally not used as a runtime template. | ||
|
|
||
| The SKILL.md content is generated inline by `install_ai_skills()`, which is | ||
| the single source of truth for the SKILL file format. | ||
|
|
||
| This placeholder file exists only to document that there is no standalone | ||
| SKILL.md template. If you need to change the generated output, update | ||
| `install_ai_skills()` instead. | ||
AIstar007 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| --> | ||
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.
Uh oh!
There was an error while loading. Please reload this page.