copilot-tap-extension 1.1.1 → 1.1.2
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/bin/install.mjs
CHANGED
|
@@ -40,7 +40,7 @@ Installs:
|
|
|
40
40
|
extensions/tap/extension.mjs The bundled ※ tap extension
|
|
41
41
|
extensions/tap/version.json Installed version metadata
|
|
42
42
|
skills/loop/SKILL.md The /loop skill for prompt-based loops
|
|
43
|
-
skills/provider/SKILL.md
|
|
43
|
+
skills/create-provider/SKILL.md The /create-provider skill for scaffolding providers
|
|
44
44
|
copilot-instructions.md Agent instructions for using ※ tap
|
|
45
45
|
`);
|
|
46
46
|
}
|
|
@@ -174,9 +174,9 @@ function install(flags) {
|
|
|
174
174
|
label: "skills/loop/SKILL.md"
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
|
-
src: path.join(distDir, "skills", "provider", "SKILL.md"),
|
|
178
|
-
dest: path.join(targetRoot, "skills", "provider", "SKILL.md"),
|
|
179
|
-
label: "skills/provider/SKILL.md"
|
|
177
|
+
src: path.join(distDir, "skills", "create-provider", "SKILL.md"),
|
|
178
|
+
dest: path.join(targetRoot, "skills", "create-provider", "SKILL.md"),
|
|
179
|
+
label: "skills/create-provider/SKILL.md"
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
182
|
src: path.join(distDir, "copilot-instructions.md"),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: provider
|
|
3
|
-
description: "
|
|
4
|
-
argument-hint: "<
|
|
2
|
+
name: create-provider
|
|
3
|
+
description: "Create an external tool provider that connects to ※ tap. Use when the user says 'create a provider', 'build a provider', 'scaffold a provider', 'add an external tool', 'connect a service to tap', or wants to extend Copilot with tools written in any language."
|
|
4
|
+
argument-hint: "<what the provider should do>"
|
|
5
5
|
user-invocable: true
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: loop
|
|
3
|
-
description: "
|
|
3
|
+
description: "Run a prompt on a recurring schedule or when idle. Use when the user says 'loop', 'every 5 minutes', 'check periodically', 'keep watching', 'repeat this', 'run when idle', or wants any prompt to re-run automatically."
|
|
4
4
|
argument-hint: "<interval|idle> <prompt>"
|
|
5
5
|
user-invocable: true
|
|
6
6
|
---
|
package/dist/version.json
CHANGED