@dusky-bluehour/agent-service 0.6.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/LICENSE +21 -0
- package/README.md +205 -0
- package/antigravity/README.md +37 -0
- package/antigravity/agents/agent-catalog.json +72 -0
- package/antigravity/artifacts/artifact-catalog.json +184 -0
- package/antigravity/commands/command-catalog.json +942 -0
- package/antigravity/skills/code-review-and-improvement/SKILL.md +15 -0
- package/antigravity/skills/frontend-repetition-pack/SKILL.md +15 -0
- package/antigravity/skills/incident-response/SKILL.md +15 -0
- package/antigravity/skills/prd-to-production-pipeline/SKILL.md +16 -0
- package/antigravity/skills/release-and-operations/SKILL.md +15 -0
- package/antigravity/skills/security-hardening/SKILL.md +15 -0
- package/antigravity/skills/service-lifecycle-orchestration/SKILL.md +16 -0
- package/antigravity/workflows/workflow-catalog.json +362 -0
- package/catalog/tool-catalog.ko.json +296 -0
- package/claude-code/README.md +47 -0
- package/claude-code/agent-teams/team-catalog.json +69 -0
- package/claude-code/commands/command-catalog.json +942 -0
- package/claude-code/skills/code-review-and-improvement/SKILL.md +16 -0
- package/claude-code/skills/frontend-repetition-pack/SKILL.md +16 -0
- package/claude-code/skills/incident-response/SKILL.md +16 -0
- package/claude-code/skills/prd-to-production-pipeline/SKILL.md +17 -0
- package/claude-code/skills/release-and-operations/SKILL.md +16 -0
- package/claude-code/skills/security-hardening/SKILL.md +15 -0
- package/claude-code/skills/service-lifecycle-orchestration/SKILL.md +17 -0
- package/claude-code/subagents/backend-engineer.md +20 -0
- package/claude-code/subagents/code-reviewer.md +19 -0
- package/claude-code/subagents/frontend-engineer.md +20 -0
- package/claude-code/subagents/hook-refactor-engineer.md +19 -0
- package/claude-code/subagents/incident-commander.md +19 -0
- package/claude-code/subagents/lead-orchestrator.md +18 -0
- package/claude-code/subagents/operations-owner.md +20 -0
- package/claude-code/subagents/performance-engineer.md +19 -0
- package/claude-code/subagents/prd-writer.md +20 -0
- package/claude-code/subagents/product-planner.md +19 -0
- package/claude-code/subagents/qa-engineer.md +19 -0
- package/claude-code/subagents/security-engineer.md +20 -0
- package/claude-code/subagents/solution-architect.md +19 -0
- package/claude-code/subagents/sre-release-engineer.md +20 -0
- package/claude-code/subagents/ui-component-engineer.md +19 -0
- package/claude-code/workflows/workflow-catalog.json +680 -0
- package/codex/README.md +38 -0
- package/codex/automations/automation-recipes.toml +30 -0
- package/codex/commands/command-catalog.json +942 -0
- package/codex/instructions/AGENTS.override.template.md +21 -0
- package/codex/instructions/AGENTS.template.md +31 -0
- package/codex/skills/code-review-and-improvement/SKILL.md +16 -0
- package/codex/skills/code-review-and-improvement/agents/openai.yaml +4 -0
- package/codex/skills/frontend-repetition-pack/SKILL.md +15 -0
- package/codex/skills/frontend-repetition-pack/agents/openai.yaml +4 -0
- package/codex/skills/incident-response/SKILL.md +16 -0
- package/codex/skills/incident-response/agents/openai.yaml +4 -0
- package/codex/skills/prd-to-production-pipeline/SKILL.md +16 -0
- package/codex/skills/prd-to-production-pipeline/agents/openai.yaml +4 -0
- package/codex/skills/release-and-operations/SKILL.md +15 -0
- package/codex/skills/release-and-operations/agents/openai.yaml +4 -0
- package/codex/skills/security-hardening/SKILL.md +15 -0
- package/codex/skills/security-hardening/agents/openai.yaml +4 -0
- package/codex/skills/service-lifecycle-orchestration/SKILL.md +17 -0
- package/codex/skills/service-lifecycle-orchestration/agents/openai.yaml +4 -0
- package/codex/workflows/workflow-catalog.json +444 -0
- package/package.json +44 -0
- package/scripts/init.mjs +993 -0
- package/scripts/validate.mjs +591 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dusky-bluehour/agent-service",
|
|
3
|
+
"version": "0.6.2",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"description": "Service operation skills/workflows pack for Claude Code, Antigravity, and Codex",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"bin": {
|
|
10
|
+
"tri-agent-manager": "scripts/init.mjs",
|
|
11
|
+
"tri-agent-os": "scripts/init.mjs"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"validate": "node scripts/validate.mjs",
|
|
15
|
+
"pack:dry-run": "npm_config_cache=.npm-cache npm pack --dry-run",
|
|
16
|
+
"prepublish:check": "npm run validate && npm run pack:dry-run",
|
|
17
|
+
"prepublishOnly": "npm run prepublish:check"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"claude-code",
|
|
21
|
+
"antigravity",
|
|
22
|
+
"codex",
|
|
23
|
+
"catalog/tool-catalog.ko.json",
|
|
24
|
+
"scripts/init.mjs",
|
|
25
|
+
"scripts/validate.mjs",
|
|
26
|
+
"README.md",
|
|
27
|
+
"LICENSE"
|
|
28
|
+
],
|
|
29
|
+
"keywords": [
|
|
30
|
+
"ai-agent",
|
|
31
|
+
"workflow",
|
|
32
|
+
"codex",
|
|
33
|
+
"claude-code",
|
|
34
|
+
"antigravity",
|
|
35
|
+
"devops",
|
|
36
|
+
"security",
|
|
37
|
+
"code-review"
|
|
38
|
+
],
|
|
39
|
+
"author": "",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=18"
|
|
43
|
+
}
|
|
44
|
+
}
|