strray-ai 1.14.2 → 1.14.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS-consumer.md +9 -9
- package/AGENTS.md +9 -9
- package/README.md +73 -80
- package/licenses/skills/LICENSE.agency-agents +23 -0
- package/licenses/skills/LICENSE.ai-web3-security +34 -0
- package/licenses/skills/LICENSE.anthropic-skills +38 -0
- package/licenses/skills/LICENSE.antigravity +42 -0
- package/licenses/skills/LICENSE.gemini-skills +118 -0
- package/licenses/skills/LICENSE.impeccable +75 -0
- package/licenses/skills/LICENSE.minimax +23 -0
- package/licenses/skills/LICENSE.openviking +74 -0
- package/licenses/skills/LICENSE.superpowers +23 -0
- package/licenses/skills/LICENSE.ui-ux-pro-max +23 -0
- package/licenses/skills/LICENSE.vuejs-nuxt +23 -0
- package/package.json +2 -3
- package/scripts/node/universal-version-manager.js +3 -3
package/AGENTS-consumer.md
CHANGED
|
@@ -139,18 +139,18 @@ The `@storyteller` agent supports multiple story types:
|
|
|
139
139
|
|
|
140
140
|
## Available Skills
|
|
141
141
|
|
|
142
|
-
StringRay
|
|
142
|
+
StringRay ships with 30 framework skills and provides a registry of 10 curated community sources.
|
|
143
143
|
|
|
144
|
-
|
|
145
|
-
|-------|---------|---------|----------|
|
|
146
|
-
| **Impeccable** | Apache 2.0 | AI frontend design + UI/UX generation | `.opencode/integrations/impeccable/SKILL.md` |
|
|
147
|
-
| **OpenViking** | Apache 2.0 | Context database + RAG integration | `.opencode/integrations/openviking/SKILL.md` |
|
|
148
|
-
| **Antigravity** | Custom | Multi-skill bridge (Impeccable, OpenViking, Claude/SEO) | `.opencode/integrations/antigravity-bridge/SKILL.md` |
|
|
149
|
-
|
|
150
|
-
**Check skills status:**
|
|
144
|
+
**Manage skills:**
|
|
151
145
|
```bash
|
|
152
|
-
npx strray-ai
|
|
146
|
+
npx strray-ai skill:install # Show starter packs + available sources
|
|
147
|
+
npx strray-ai skill:install <name> # Install from registry
|
|
148
|
+
npx strray-ai skill:registry list # Show all registry sources
|
|
149
|
+
npx strray-ai antigravity status # Show installed skills
|
|
153
150
|
```
|
|
151
|
+
|
|
152
|
+
**License files:** `licenses/skills/LICENSE.<source-name>`
|
|
153
|
+
|
|
154
154
|
## Complexity Routing
|
|
155
155
|
|
|
156
156
|
StringRay automatically routes tasks based on complexity:
|
package/AGENTS.md
CHANGED
|
@@ -139,18 +139,18 @@ The `@storyteller` agent supports multiple story types:
|
|
|
139
139
|
|
|
140
140
|
## Available Skills
|
|
141
141
|
|
|
142
|
-
StringRay
|
|
142
|
+
StringRay ships with 30 framework skills and provides a registry of 10 curated community sources.
|
|
143
143
|
|
|
144
|
-
|
|
145
|
-
|-------|---------|---------|----------|
|
|
146
|
-
| **Impeccable** | Apache 2.0 | AI frontend design + UI/UX generation | `.opencode/integrations/impeccable/SKILL.md` |
|
|
147
|
-
| **OpenViking** | Apache 2.0 | Context database + RAG integration | `.opencode/integrations/openviking/SKILL.md` |
|
|
148
|
-
| **Antigravity** | Custom | Multi-skill bridge (Impeccable, OpenViking, Claude/SEO) | `.opencode/integrations/antigravity-bridge/SKILL.md` |
|
|
149
|
-
|
|
150
|
-
**Check skills status:**
|
|
144
|
+
**Manage skills:**
|
|
151
145
|
```bash
|
|
152
|
-
npx strray-ai
|
|
146
|
+
npx strray-ai skill:install # Show starter packs + available sources
|
|
147
|
+
npx strray-ai skill:install <name> # Install from registry
|
|
148
|
+
npx strray-ai skill:registry list # Show all registry sources
|
|
149
|
+
npx strray-ai antigravity status # Show installed skills
|
|
153
150
|
```
|
|
151
|
+
|
|
152
|
+
**License files:** `licenses/skills/LICENSE.<source-name>`
|
|
153
|
+
|
|
154
154
|
## Complexity Routing
|
|
155
155
|
|
|
156
156
|
StringRay automatically routes tasks based on complexity:
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Enterprise AI Orchestration Framework for OpenCode/Claude Code**
|
|
4
4
|
|
|
5
|
-
[](https://npmjs.com/package/strray-ai)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](src/__tests__)
|
|
8
8
|
[](https://github.com/htafolla/stringray)
|
|
@@ -23,8 +23,9 @@ This single command:
|
|
|
23
23
|
1. Detects if OpenCode is installed
|
|
24
24
|
2. Auto-installs OpenCode if missing
|
|
25
25
|
3. Layers on the full StringRay kernel (Codex, orchestrator, enforcer, processors, MCP, reflections)
|
|
26
|
-
4. Installs
|
|
27
|
-
5.
|
|
26
|
+
4. Installs 30 framework skills
|
|
27
|
+
5. Sets up the skills registry with 10 curated community sources
|
|
28
|
+
6. Adds CLI commands for agent publishing, skills management, and status
|
|
28
29
|
|
|
29
30
|
**Goal:** Any developer can run one command and instantly get a production-grade, governed agent runtime.
|
|
30
31
|
|
|
@@ -55,9 +56,9 @@ npm install strray-ai
|
|
|
55
56
|
|
|
56
57
|
- **🤖 26 Specialized Agents** - From code review to mobile development
|
|
57
58
|
- **📏 99.6% Error Prevention** - Universal Development Codex (60 terms)
|
|
58
|
-
- **⚡ 30
|
|
59
|
+
- **⚡ 30 Framework Skills** + 10 curated community sources (170+ additional skills available)
|
|
59
60
|
- **🛡️ Enterprise Security** - Comprehensive validation and scanning
|
|
60
|
-
-
|
|
61
|
+
- **📦 Skills Registry** - Browse and install community skills from GitHub repos
|
|
61
62
|
- **🔄 Complexity-Based Routing** - Intelligent task delegation
|
|
62
63
|
- **🔌 Webhook Integration** - GitHub, GitLab, Bitbucket, Stripe
|
|
63
64
|
- **✅ 2368 Tests** - Production-ready with comprehensive test coverage
|
|
@@ -138,7 +139,11 @@ npx strray-ai report # Generate usage and performance reports
|
|
|
138
139
|
npx strray-ai publish-agent --agent orchestrator # Package agent for AgentStore
|
|
139
140
|
|
|
140
141
|
# Skills management
|
|
141
|
-
npx strray-ai
|
|
142
|
+
npx strray-ai skill:install # Show starter packs + available sources
|
|
143
|
+
npx strray-ai skill:install agency-agents # Install from registry (auto-detects format)
|
|
144
|
+
npx strray-ai skill:install <github-url> # Install from any repo
|
|
145
|
+
npx strray-ai skill:registry list # Show all registry sources
|
|
146
|
+
npx strray-ai antigravity status # Show installed skills with licenses
|
|
142
147
|
```
|
|
143
148
|
|
|
144
149
|
**Note:** Installation is automatic via `npm install strray-ai`. The postinstall hook configures everything automatically.
|
|
@@ -311,100 +316,88 @@ fastify.register(integration.getAPIRouter(), { prefix: '/api/post-process' });
|
|
|
311
316
|
- Bitbucket (push, pull requests)
|
|
312
317
|
- Stripe (subscriptions, payments)
|
|
313
318
|
|
|
314
|
-
## 🎯 Skills
|
|
319
|
+
## 🎯 Skills
|
|
315
320
|
|
|
316
|
-
StringRay
|
|
321
|
+
StringRay ships with **30 framework skills** and provides a registry of **10 curated community sources** with 170+ additional skills.
|
|
317
322
|
|
|
318
|
-
|
|
319
|
-
|------------|-------|---------|-------------|
|
|
320
|
-
| Antigravity | 17 | MIT | Language experts, DevOps, Security, Business |
|
|
321
|
-
| Claude SEO | 12 | MIT | SEO optimization and analysis |
|
|
322
|
-
| Impeccable | 1 | Apache 2.0 | AI frontend design language |
|
|
323
|
-
| OpenViking | 1 | Apache 2.0 | Context database for agents |
|
|
323
|
+
### Skills Registry
|
|
324
324
|
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
[Impeccable](https://github.com/pbakaus/impeccable) is a design language skill that teaches AI coding assistants professional frontend design:
|
|
325
|
+
Browse and install skills from verified GitHub repositories:
|
|
328
326
|
|
|
329
327
|
```bash
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
/polish # Pre-ship refinement
|
|
333
|
-
/typeset # Fix typography
|
|
334
|
-
/arrange # Fix layout & spacing
|
|
335
|
-
```
|
|
336
|
-
|
|
337
|
-
**Anti-patterns it teaches AI to avoid:**
|
|
338
|
-
- Overused fonts (Inter, Arial)
|
|
339
|
-
- Purple gradients
|
|
340
|
-
- Cards on colored backgrounds
|
|
341
|
-
- Gray text on colored backgrounds
|
|
328
|
+
# Show starter packs and available sources
|
|
329
|
+
npx strray-ai skill:install
|
|
342
330
|
|
|
343
|
-
|
|
331
|
+
# Install a specific source
|
|
332
|
+
npx strray-ai skill:install agency-agents
|
|
333
|
+
npx strray-ai skill:install superpowers
|
|
334
|
+
npx strray-ai skill:install anthropic-skills
|
|
344
335
|
|
|
345
|
-
|
|
336
|
+
# Install from any GitHub repo (auto-detects format)
|
|
337
|
+
npx strray-ai skill:install https://github.com/user/skills-repo
|
|
346
338
|
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
/seo geo <url> # AI search optimization
|
|
352
|
-
/seo schema <url> # Schema markup
|
|
353
|
-
/seo sitemap <url> # Sitemap analysis
|
|
354
|
-
/seo programmatic <url> # Programmatic SEO
|
|
355
|
-
/seo competitor-pages # Comparison pages
|
|
356
|
-
/seo hreflang <url> # Multi-language SEO
|
|
339
|
+
# Manage the registry
|
|
340
|
+
npx strray-ai skill:registry list # Show all sources
|
|
341
|
+
npx strray-ai skill:registry add --name X --url Y --desc "..." --license MIT
|
|
342
|
+
npx strray-ai skill:registry remove --name X
|
|
357
343
|
```
|
|
358
344
|
|
|
359
|
-
|
|
345
|
+
#### Starter Packs
|
|
346
|
+
|
|
347
|
+
| Pack | Sources | Skills | Best For |
|
|
348
|
+
|------|---------|--------|----------|
|
|
349
|
+
| **Minimal Viable Power** | superpowers, anthropic-skills | 20+ | Solo devs, quick setup |
|
|
350
|
+
| **Full Pro Setup** | + agency-agents, impeccable, minimax | 200+ | Professional development |
|
|
351
|
+
| **Agency/Team Mode** | + gemini-skills, ai-web3-security | 220+ | Teams, security audits |
|
|
352
|
+
| **Specialized** | + vuejs-nuxt, ui-ux-pro-max | 230+ | Nuxt/Vue, UI/UX work |
|
|
353
|
+
|
|
354
|
+
#### Registry Sources
|
|
355
|
+
|
|
356
|
+
| Source | Skills | License | Description |
|
|
357
|
+
|--------|--------|---------|-------------|
|
|
358
|
+
| [agency-agents](https://github.com/msitarzewski/agency-agents) | 170+ | MIT | AI agency agent definitions |
|
|
359
|
+
| [superpowers](https://github.com/obra/superpowers) | 14 | MIT | TDD, debugging, code review workflows |
|
|
360
|
+
| [anthropic-skills](https://github.com/anthropics/skills) | 10+ | MIT | Official Anthropic Claude Code skills |
|
|
361
|
+
| [antigravity](https://github.com/sickn33/antigravity-awesome-skills) | 1300+ | MIT | Curated community skills |
|
|
362
|
+
| [impeccable](https://github.com/pbakaus/impeccable) | 1 | Apache 2.0 | AI frontend design language |
|
|
363
|
+
| [minimax](https://github.com/MiniMax-AI/skills) | 20+ | MIT | Frontend, mobile, shader skills |
|
|
364
|
+
| [gemini-skills](https://github.com/google-gemini/gemini-skills) | 10+ | Apache 2.0 | Official Google Gemini skills |
|
|
365
|
+
| [ai-web3-security](https://github.com/pashov/ai-web3-security) | 10+ | MIT | Web3 security auditing |
|
|
366
|
+
| [vuejs-nuxt](https://github.com/robert-zaremba/ai-agent-skills) | 5+ | MIT | Vue.js 3, Nuxt 4+ skills |
|
|
367
|
+
| [ui-ux-pro-max](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) | 1 | MIT | Professional UI/UX design |
|
|
360
368
|
|
|
361
|
-
|
|
369
|
+
### Impeccable - AI Frontend Design
|
|
362
370
|
|
|
363
|
-
|
|
364
|
-
|----------|--------|
|
|
365
|
-
| Languages | typescript-expert, python-patterns, react-patterns, go-patterns, rust-patterns |
|
|
366
|
-
| DevOps | docker-expert, aws-serverless, vercel-deployment |
|
|
367
|
-
| Security | vulnerability-scanner, api-security-best-practices |
|
|
368
|
-
| Business | copywriting, pricing-strategy, seo-fundamentals |
|
|
369
|
-
| AI/Data | rag-engineer, prompt-engineering |
|
|
370
|
-
| General | brainstorming, planning |
|
|
371
|
+
[Impeccable](https://github.com/pbakaus/impeccable) is a design language skill that teaches AI coding assistants professional frontend design:
|
|
371
372
|
|
|
372
373
|
```bash
|
|
373
|
-
#
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
#
|
|
377
|
-
|
|
374
|
+
/audit # Find issues
|
|
375
|
+
/critique # UX design review
|
|
376
|
+
/polish # Pre-ship refinement
|
|
377
|
+
/typeset # Fix typography
|
|
378
|
+
/arrange # Fix layout & spacing
|
|
378
379
|
```
|
|
379
380
|
|
|
380
|
-
###
|
|
381
|
+
### Framework Skills (30 Built-in)
|
|
381
382
|
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
```bash
|
|
385
|
-
ov init # Initialize workspace
|
|
386
|
-
ov status # Check status
|
|
387
|
-
ov add-memory # Add new memory
|
|
388
|
-
ov ls viking:// # List all context
|
|
389
|
-
```
|
|
390
|
-
|
|
391
|
-
**Key features:**
|
|
392
|
-
- Filesystem paradigm for memory organization
|
|
393
|
-
- Tiered context loading (L0/L1/L2) to save tokens
|
|
394
|
-
- Directory-aware search and retrieval
|
|
395
|
-
- Session memory persistence
|
|
383
|
+
StringRay includes 30 core skills for orchestration, compliance, architecture, and more — installed to `.opencode/skills/` automatically.
|
|
396
384
|
|
|
397
385
|
## License Information
|
|
398
386
|
|
|
399
|
-
All
|
|
400
|
-
|
|
401
|
-
|
|
|
402
|
-
|
|
403
|
-
|
|
|
404
|
-
|
|
|
405
|
-
|
|
|
406
|
-
|
|
|
407
|
-
|
|
387
|
+
All community skill sources are properly licensed. License files are in `licenses/skills/`:
|
|
388
|
+
|
|
389
|
+
| Source | License | File |
|
|
390
|
+
|--------|---------|------|
|
|
391
|
+
| agency-agents | MIT | `licenses/skills/LICENSE.agency-agents` |
|
|
392
|
+
| superpowers | MIT | `licenses/skills/LICENSE.superpowers` |
|
|
393
|
+
| anthropic-skills | MIT | `licenses/skills/LICENSE.anthropic-skills` |
|
|
394
|
+
| antigravity | MIT | `licenses/skills/LICENSE.antigravity` |
|
|
395
|
+
| impeccable | Apache 2.0 | `licenses/skills/LICENSE.impeccable` |
|
|
396
|
+
| minimax | MIT | `licenses/skills/LICENSE.minimax` |
|
|
397
|
+
| gemini-skills | Apache 2.0 | `licenses/skills/LICENSE.gemini-skills` |
|
|
398
|
+
| ai-web3-security | MIT | `licenses/skills/LICENSE.ai-web3-security` |
|
|
399
|
+
| vuejs-nuxt | MIT | `licenses/skills/LICENSE.vuejs-nuxt` |
|
|
400
|
+
| ui-ux-pro-max | MIT | `licenses/skills/LICENSE.ui-ux-pro-max` |
|
|
408
401
|
|
|
409
402
|
## 🙏 Support & Star
|
|
410
403
|
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 AgentLand Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
Source: https://github.com/msitarzewski/agency-agents
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
LICENSE NOTICE: ai-web3-security
|
|
2
|
+
|
|
3
|
+
Source: https://github.com/pashov/ai-web3-security
|
|
4
|
+
|
|
5
|
+
This repository does not include a LICENSE file. The GitHub API reports
|
|
6
|
+
no license (license: null). The registry entry lists "MIT" based on
|
|
7
|
+
README description and community convention.
|
|
8
|
+
|
|
9
|
+
Before redistributing skills from this source, verify the license
|
|
10
|
+
directly at: https://github.com/pashov/ai-web3-security
|
|
11
|
+
|
|
12
|
+
Canonical MIT License Text (pending confirmation):
|
|
13
|
+
|
|
14
|
+
MIT License
|
|
15
|
+
|
|
16
|
+
Copyright (c) 2026 pashov
|
|
17
|
+
|
|
18
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
19
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
20
|
+
in the Software without restriction, including without limitation the rights
|
|
21
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
22
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
23
|
+
furnished to do so, subject to the following conditions:
|
|
24
|
+
|
|
25
|
+
The above copyright notice and this permission notice shall be included in all
|
|
26
|
+
copies or substantial portions of the Software.
|
|
27
|
+
|
|
28
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
29
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
30
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
31
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
32
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
33
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
34
|
+
SOFTWARE.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
LICENSE NOTICE: anthropic-skills
|
|
2
|
+
|
|
3
|
+
Source: https://github.com/anthropics/skills
|
|
4
|
+
|
|
5
|
+
This repository does not include a LICENSE file. The GitHub API reports
|
|
6
|
+
no license (license: null). However, Anthropic publishes these skills
|
|
7
|
+
as part of their official Claude Code ecosystem. The repository includes
|
|
8
|
+
a THIRD_PARTY_NOTICES.md file but no project-level license.
|
|
9
|
+
|
|
10
|
+
The registry entry lists "MIT" based on Anthropic's community convention
|
|
11
|
+
and the permissive nature of their published skill files.
|
|
12
|
+
|
|
13
|
+
Before redistributing skills from this source, verify the license
|
|
14
|
+
directly at: https://github.com/anthropics/skills
|
|
15
|
+
|
|
16
|
+
Canonical MIT License Text (pending confirmation):
|
|
17
|
+
|
|
18
|
+
MIT License
|
|
19
|
+
|
|
20
|
+
Copyright (c) 2025 Anthropic
|
|
21
|
+
|
|
22
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
23
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
24
|
+
in the Software without restriction, including without limitation the rights
|
|
25
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
26
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
27
|
+
furnished to do so, subject to the following conditions:
|
|
28
|
+
|
|
29
|
+
The above copyright notice and this permission notice shall be included in all
|
|
30
|
+
copies or substantial portions of the Software.
|
|
31
|
+
|
|
32
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
33
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
34
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
35
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
36
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
37
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
38
|
+
SOFTWARE.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Antigravity Awesome Skills - License
|
|
2
|
+
=====================================
|
|
3
|
+
|
|
4
|
+
This file contains third-party skills from Antigravity Awesome Skills.
|
|
5
|
+
|
|
6
|
+
Source: https://github.com/sickn33/antigravity-awesome-skills
|
|
7
|
+
License: MIT
|
|
8
|
+
|
|
9
|
+
Original License Text:
|
|
10
|
+
---------------------
|
|
11
|
+
|
|
12
|
+
MIT License
|
|
13
|
+
|
|
14
|
+
Copyright (c) 2026 Antigravity User
|
|
15
|
+
|
|
16
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
17
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
18
|
+
in the Software without restriction, including without limitation the rights
|
|
19
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
20
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
21
|
+
furnished to do so, subject to the following conditions:
|
|
22
|
+
|
|
23
|
+
The above copyright notice and this permission notice shall be included in all
|
|
24
|
+
copies or substantial portions of the Software.
|
|
25
|
+
|
|
26
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
27
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
28
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
29
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
30
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
31
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
32
|
+
SOFTWARE.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
Attribution:
|
|
37
|
+
- typescript-expert: Community
|
|
38
|
+
- python-patterns: Community
|
|
39
|
+
- docker-expert: Community
|
|
40
|
+
- copywriting: Community
|
|
41
|
+
- brainstorming: Community
|
|
42
|
+
- And many more from the Antigravity community
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity.
|
|
18
|
+
|
|
19
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
20
|
+
exercising permissions granted by this License.
|
|
21
|
+
|
|
22
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
23
|
+
including but not limited to software source code, documentation
|
|
24
|
+
source, and configuration files.
|
|
25
|
+
|
|
26
|
+
"Object" form shall mean any form resulting from mechanical
|
|
27
|
+
transformation or translation of a Source form, including but
|
|
28
|
+
not limited to compiled object code, generated documentation,
|
|
29
|
+
and conversions to other media types.
|
|
30
|
+
|
|
31
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
32
|
+
Object form, made available under the License, as indicated by a
|
|
33
|
+
copyright notice that is included in or attached to the work.
|
|
34
|
+
|
|
35
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
36
|
+
form, that is based on (or derived from) the Work and for which the
|
|
37
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
38
|
+
represent, as a whole, an original work of authorship.
|
|
39
|
+
|
|
40
|
+
"Contribution" shall mean any work of authorship, including
|
|
41
|
+
the original version of the Work and any modifications or additions
|
|
42
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
43
|
+
submitted to Licensor for inclusion in the Work by the copyright owner.
|
|
44
|
+
|
|
45
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
46
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
47
|
+
subsequently incorporated within the Work.
|
|
48
|
+
|
|
49
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
50
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
51
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
52
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
53
|
+
publicly display, publicly perform, sublicense, and distribute
|
|
54
|
+
the Work and such Derivative Works in Source or Object form.
|
|
55
|
+
|
|
56
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
57
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
58
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
59
|
+
(except as stated in this section) patent license to make, have made,
|
|
60
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
61
|
+
where such license applies only to those patent claims licensable
|
|
62
|
+
by such Contributor that are necessarily infringed by their
|
|
63
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
64
|
+
with the Work to which such Contribution(s) was submitted.
|
|
65
|
+
|
|
66
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
67
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
68
|
+
modifications, and in Source or Object form, provided that You
|
|
69
|
+
meet the following conditions:
|
|
70
|
+
|
|
71
|
+
(a) You must give any other recipients of the Work or
|
|
72
|
+
Derivative Works a copy of this License; and
|
|
73
|
+
|
|
74
|
+
(b) You must cause any modified files to carry prominent notices
|
|
75
|
+
stating that You changed the files; and
|
|
76
|
+
|
|
77
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
78
|
+
that You distribute, all copyright, patent, trademark, and
|
|
79
|
+
attribution notices from the Source form of the Work,
|
|
80
|
+
excluding those notices that do not pertain to any part of
|
|
81
|
+
the Derivative Works; and
|
|
82
|
+
|
|
83
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
84
|
+
distribution, then any Derivative Works that You distribute must
|
|
85
|
+
include a readable copy of the attribution notices contained
|
|
86
|
+
within such NOTICE file.
|
|
87
|
+
|
|
88
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
89
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
90
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
91
|
+
this License, without any additional terms or conditions.
|
|
92
|
+
|
|
93
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
94
|
+
names, trademarks, service marks, or product names of the Licensor.
|
|
95
|
+
|
|
96
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
97
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
98
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
99
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
100
|
+
implied. See the License for the specific language governing
|
|
101
|
+
permissions and limitations under the License.
|
|
102
|
+
|
|
103
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
104
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
105
|
+
unless required by applicable law (such as deliberate and grossly
|
|
106
|
+
negligent acts) or agreed to in writing, shall any Contributor
|
|
107
|
+
be liable for You for damages, including any direct, indirect,
|
|
108
|
+
special, incidental, or consequential damages of any character
|
|
109
|
+
arising as a result of this License or out of the use or inability
|
|
110
|
+
to use the Work.
|
|
111
|
+
|
|
112
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
113
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
114
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
115
|
+
or other liability obligations and/or rights consistent with this
|
|
116
|
+
License.
|
|
117
|
+
|
|
118
|
+
Source: https://github.com/google-gemini/gemini-skills
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
Impeccable - License
|
|
2
|
+
=====================
|
|
3
|
+
|
|
4
|
+
This file contains third-party skills from Impeccable.
|
|
5
|
+
|
|
6
|
+
Source: https://github.com/pbakaus/impeccable
|
|
7
|
+
License: Apache License 2.0
|
|
8
|
+
|
|
9
|
+
Original License Text:
|
|
10
|
+
---------------------
|
|
11
|
+
|
|
12
|
+
Apache License
|
|
13
|
+
Version 2.0, January 2004
|
|
14
|
+
http://www.apache.org/licenses/
|
|
15
|
+
|
|
16
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
17
|
+
|
|
18
|
+
1. Definitions.
|
|
19
|
+
|
|
20
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
21
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
22
|
+
|
|
23
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
24
|
+
the copyright owner that is granting the License.
|
|
25
|
+
|
|
26
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
27
|
+
other entities that control, are controlled by, or are under common
|
|
28
|
+
control with that entity.
|
|
29
|
+
|
|
30
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
31
|
+
exercising permissions granted by this License.
|
|
32
|
+
|
|
33
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
34
|
+
including but not limited to software source code, documentation
|
|
35
|
+
source, and configuration files.
|
|
36
|
+
|
|
37
|
+
"Object" form shall mean any form resulting from mechanical
|
|
38
|
+
transformation or translation of a Source form, including but
|
|
39
|
+
not limited to compiled object code, generated documentation,
|
|
40
|
+
and conversions to other media types.
|
|
41
|
+
|
|
42
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
43
|
+
Object form, made available under the License, as indicated by a
|
|
44
|
+
copyright notice that is included in or attached to the work
|
|
45
|
+
(an example is provided in the Appendix below).
|
|
46
|
+
|
|
47
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
48
|
+
form, that is based on (or derived from) the Work and for which the
|
|
49
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
50
|
+
represent, as a whole, an original work of authorship.
|
|
51
|
+
|
|
52
|
+
2. Grant of Copyright License.
|
|
53
|
+
|
|
54
|
+
Subject to the terms and conditions of this License, each Contributor
|
|
55
|
+
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
|
|
56
|
+
royalty-free, irrevocable copyright license to reproduce, prepare
|
|
57
|
+
Derivative Works of, publicly display, publicly perform, sublicense,
|
|
58
|
+
and distribute the Work and such Derivative Works in Source or Object form.
|
|
59
|
+
|
|
60
|
+
3. Grant of Patent License.
|
|
61
|
+
|
|
62
|
+
Subject to the terms and conditions of this License, each Contributor
|
|
63
|
+
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
|
|
64
|
+
royalty-free, irrevocable patent license to make, have made, use, offer
|
|
65
|
+
to sell, sell, import, and otherwise transfer the Work.
|
|
66
|
+
|
|
67
|
+
END OF TERMS AND CONDITIONS
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
Attribution:
|
|
72
|
+
- Impeccable: Paul Bakaus (pbakaus)
|
|
73
|
+
- Foundation: Builds on Anthropic's frontend-design skill
|
|
74
|
+
- Framework: StringRay v1.14.0
|
|
75
|
+
- Integration: Automated installation script
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 MiniMax
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
Source: https://github.com/MiniMax-AI/skills
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
OpenViking - License
|
|
2
|
+
=====================
|
|
3
|
+
|
|
4
|
+
This file contains third-party integration from OpenViking.
|
|
5
|
+
|
|
6
|
+
Source: https://github.com/volcengine/OpenViking
|
|
7
|
+
License: Apache License 2.0
|
|
8
|
+
|
|
9
|
+
Original License Text:
|
|
10
|
+
---------------------
|
|
11
|
+
|
|
12
|
+
Apache License
|
|
13
|
+
Version 2.0, January 2004
|
|
14
|
+
http://www.apache.org/licenses/
|
|
15
|
+
|
|
16
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
17
|
+
|
|
18
|
+
1. Definitions.
|
|
19
|
+
|
|
20
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
21
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
22
|
+
|
|
23
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
24
|
+
the copyright owner that is granting the License.
|
|
25
|
+
|
|
26
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
27
|
+
other entities that control, are controlled by, or are under common
|
|
28
|
+
control with that entity.
|
|
29
|
+
|
|
30
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
31
|
+
exercising permissions granted by this License.
|
|
32
|
+
|
|
33
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
34
|
+
including but not limited to software source code, documentation
|
|
35
|
+
source, and configuration files.
|
|
36
|
+
|
|
37
|
+
"Object" form shall mean any form resulting from mechanical
|
|
38
|
+
transformation or translation of a Source form, including but
|
|
39
|
+
not limited to compiled object code, generated documentation,
|
|
40
|
+
and conversions to other media types.
|
|
41
|
+
|
|
42
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
43
|
+
Object form, made available under the License, as indicated by a
|
|
44
|
+
copyright notice that is included in or attached to the work
|
|
45
|
+
(an example is provided in the Appendix below).
|
|
46
|
+
|
|
47
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
48
|
+
form, that is based on (or derived from) the Work and for which the
|
|
49
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
50
|
+
represent, as a whole, an original work of authorship.
|
|
51
|
+
|
|
52
|
+
2. Grant of Copyright License.
|
|
53
|
+
|
|
54
|
+
Subject to the terms and conditions of this License, each Contributor
|
|
55
|
+
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
|
|
56
|
+
royalty-free, irrevocable copyright license to reproduce, prepare
|
|
57
|
+
Derivative Works of, publicly display, publicly perform, sublicense,
|
|
58
|
+
and distribute the Work and such Derivative Works in Source or Object form.
|
|
59
|
+
|
|
60
|
+
3. Grant of Patent License.
|
|
61
|
+
|
|
62
|
+
Subject to the terms and conditions of this License, each Contributor
|
|
63
|
+
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
|
|
64
|
+
royalty-free, irrevocable patent license to make, have made, use, offer
|
|
65
|
+
to sell, sell, import, and otherwise transfer the Work.
|
|
66
|
+
|
|
67
|
+
END OF TERMS AND CONDITIONS
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
Attribution:
|
|
72
|
+
- OpenViking: Volcengine Viking Team (ByteDance)
|
|
73
|
+
- Framework: StringRay v1.14.0
|
|
74
|
+
- Integration: Automated installation script
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Jesse Vincent
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
Source: https://github.com/obra/superpowers
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Next Level Builder
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
Source: https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Robert Zaremba
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
Source: https://github.com/robert-zaremba/ai-agent-skills
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "strray-ai",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.3",
|
|
4
4
|
"description": "⚡ StringRay ⚡: Bulletproof AI orchestration with systematic error prevention. Zero dead ends. Ship clean, tested, optimized code — every time.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -132,8 +132,7 @@
|
|
|
132
132
|
"AGENTS.md",
|
|
133
133
|
"AGENTS-consumer.md",
|
|
134
134
|
"LICENSE",
|
|
135
|
-
"
|
|
136
|
-
"LICENSE.antigravity"
|
|
135
|
+
"licenses/skills/"
|
|
137
136
|
],
|
|
138
137
|
"dependencies": {
|
|
139
138
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
@@ -76,9 +76,9 @@ const CALCULATED_COUNTS = calculateCounts();
|
|
|
76
76
|
const OFFICIAL_VERSIONS = {
|
|
77
77
|
// Framework version
|
|
78
78
|
framework: {
|
|
79
|
-
version: "1.14.
|
|
80
|
-
displayName: "StringRay AI v1.14.
|
|
81
|
-
lastUpdated: "2026-03-
|
|
79
|
+
version: "1.14.3",
|
|
80
|
+
displayName: "StringRay AI v1.14.3",
|
|
81
|
+
lastUpdated: "2026-03-26",
|
|
82
82
|
// Counts (auto-calculated, but can be overridden)
|
|
83
83
|
...CALCULATED_COUNTS,
|
|
84
84
|
},
|