-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNOTICE
More file actions
114 lines (100 loc) · 4.89 KB
/
Copy pathNOTICE
File metadata and controls
114 lines (100 loc) · 4.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
KYAULabs Template
Copyright (C) 2026 kyau <git@kyaulabs.com>
This project is licensed under the GNU Affero General Public License
v3.0 (AGPL-3.0). A copy of the license is available in the LICENSE
file at the root of this repository.
This project includes and adapts material from the following
third-party open-source projects. The original copyright notices and
license terms are preserved here as required by those licenses.
---
obra/superpowers
URL: https://github.com/obra/superpowers
Copyright: Copyright (c) Jesse Vincent
License: MIT
What was adapted: Engineering pipeline methodology — the
brainstorming-to-plan-to-TDD-to-verification pipeline sequence,
Red-Green-Refactor TDD discipline, verification gate, and the
zero-context implementation planning methodology. Also the
receiving-code-review triage discipline and the
finishing-a-development-branch checklist workflow.
Used in:
- .opencode/skills/executing-plans/SKILL.md (pipeline execution)
- .opencode/skills/verification-before-completion/SKILL.md (verification gate)
- .opencode/skills/writing-plans/SKILL.md (planning methodology)
- .opencode/skills/receiving-code-review/SKILL.md (review triage)
- .opencode/skills/finishing-a-development-branch/SKILL.md (branch completion)
- .opencode/agents/tdd.md (Red-Green-Refactor TDD discipline)
obra/superpowers-lab
URL: https://github.com/obra/superpowers-lab
Copyright: Copyright (c) Jesse Vincent
License: MIT
What was adapted: The two-phase semantic-duplication detection
pattern — classical structural extraction (Phase 1) followed by
LLM intent-clustering (Phase 2) with a deletion-test gate.
Used in:
- .opencode/skills/finding-duplicate-functions/SKILL.md (duplicate detection)
obra/superpowers-developing-for-claude-code
URL: https://github.com/obra/superpowers-developing-for-claude-code
Copyright: Copyright (c) Jesse Vincent
License: MIT
What was adapted: The vendored-official-docs skill pattern — a local
docs/ directory populated by a fetch.sh script that shallow-clones
the upstream documentation repo with sparse checkout. The skill body
provides a quick-reference table with progressive disclosure to the
vendored files.
Used in:
- .opencode/skills/opencode-docs/SKILL.md (vendored docs skill)
- .opencode/skills/opencode-docs/fetch.sh (fetch script)
mattpocock/skills
URL: https://github.com/mattpocock/skills
Copyright: Copyright (c) Matt Pocock
License: MIT
What was adapted: The one-question-at-a-time grilling pattern for
collaborative design refinement and the three-branch throwaway
prototype pattern (logic, UI, integration).
Used in:
- .opencode/skills/brainstorming/SKILL.md (grilling pattern)
- .opencode/skills/prototype/SKILL.md (prototype pattern)
anthropics/skills
URL: https://github.com/anthropics/skills
Copyright: Copyright (c) Anthropic
License: MIT
What was adapted: The SKILL.md file format specification — YAML
frontmatter with `name` and `description` fields, directory-per-skill
convention. Adopted as the harness's skill file format.
Used in:
- .opencode/skills/writing-skills/SKILL.md (format documentation)
- Applied as the structural format for all 19 skill files under
.opencode/skills/
glebis/claude-skills
URL: https://github.com/glebis/claude-skills
Copyright: Copyright (c) Gleb
License: MIT
What was adapted: The multi-agent architecture — subagent frontmatter
schema (`mode`, `temperature`, `permission` with scoped `edit`,
`bash`, `webfetch`, `task` keys) and the TDD agent as a dispatchable
worker in the pipeline.
Used in:
- .opencode/skills/writing-skills/SKILL.md (schema documentation)
- .opencode/agents/tdd.md (TDD agent architecture)
- Applied as the structural schema for all 8 agent files under
.opencode/agents/
---
The MIT license terms applicable to the above projects:
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.