@intentsolutionsio/fairdb-ops-manager 1.0.1 → 1.0.4

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.
@@ -1,8 +1,36 @@
1
1
  ---
2
2
  name: fairdb-incident-responder
3
- description: >
4
- Autonomous incident response agent for FairDB database emergencies
3
+ description: Autonomous incident response agent for FairDB database emergencies
4
+ tools:
5
+ - Read
6
+ - Write
7
+ - Edit
8
+ - Bash
9
+ - Glob
10
+ - Grep
11
+ - WebFetch
12
+ - WebSearch
13
+ - Task
14
+ - TodoWrite
5
15
  model: sonnet
16
+ color: cyan
17
+ version: 1.0.0
18
+ author: Jeremy Longshore <jeremy@intentsolutions.io>
19
+ tags:
20
+ - community
21
+ - fairdb
22
+ - incident
23
+ - responder
24
+ disallowedTools: []
25
+ skills: []
26
+ background: false
27
+ # ── upgrade levers — uncomment + set when tuning this agent ──
28
+ # effort: high # reasoning depth: low/medium/high/xhigh/max (omit = inherit session)
29
+ # maxTurns: 50 # cap the agentic loop (omit = engine default)
30
+ # memory: project # persistent scope: user/project/local (omit = ephemeral)
31
+ # isolation: worktree # run in an isolated git worktree
32
+ # initialPrompt: "…" # seed the agent's first turn
33
+ # hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
6
34
  ---
7
35
  # FairDB Incident Response Agent
8
36
 
@@ -1,9 +1,36 @@
1
1
  ---
2
2
  name: fairdb-ops-auditor
3
- description: >
4
- Operations compliance auditor - verify FairDB server meets all SOP
5
- requirements
3
+ description: Operations compliance auditor - verify FairDB server meets all SOP requirements
4
+ tools:
5
+ - Read
6
+ - Write
7
+ - Edit
8
+ - Bash
9
+ - Glob
10
+ - Grep
11
+ - WebFetch
12
+ - WebSearch
13
+ - Task
14
+ - TodoWrite
6
15
  model: sonnet
16
+ color: pink
17
+ version: 1.0.0
18
+ author: Jeremy Longshore <jeremy@intentsolutions.io>
19
+ tags:
20
+ - community
21
+ - fairdb
22
+ - ops
23
+ - auditor
24
+ disallowedTools: []
25
+ skills: []
26
+ background: false
27
+ # ── upgrade levers — uncomment + set when tuning this agent ──
28
+ # effort: high # reasoning depth: low/medium/high/xhigh/max (omit = inherit session)
29
+ # maxTurns: 50 # cap the agentic loop (omit = engine default)
30
+ # memory: project # persistent scope: user/project/local (omit = ephemeral)
31
+ # isolation: worktree # run in an isolated git worktree
32
+ # initialPrompt: "…" # seed the agent's first turn
33
+ # hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
7
34
  ---
8
35
  # FairDB Operations Compliance Auditor
9
36
 
@@ -1,8 +1,36 @@
1
1
  ---
2
2
  name: fairdb-setup-wizard
3
- description: >
4
- Guided setup wizard for complete FairDB VPS configuration from scratch
3
+ description: Guided setup wizard for complete FairDB VPS configuration from scratch
4
+ tools:
5
+ - Read
6
+ - Write
7
+ - Edit
8
+ - Bash
9
+ - Glob
10
+ - Grep
11
+ - WebFetch
12
+ - WebSearch
13
+ - Task
14
+ - TodoWrite
5
15
  model: sonnet
16
+ color: green
17
+ version: 1.0.0
18
+ author: Jeremy Longshore <jeremy@intentsolutions.io>
19
+ tags:
20
+ - community
21
+ - fairdb
22
+ - setup
23
+ - wizard
24
+ disallowedTools: []
25
+ skills: []
26
+ background: false
27
+ # ── upgrade levers — uncomment + set when tuning this agent ──
28
+ # effort: high # reasoning depth: low/medium/high/xhigh/max (omit = inherit session)
29
+ # maxTurns: 50 # cap the agentic loop (omit = engine default)
30
+ # memory: project # persistent scope: user/project/local (omit = ephemeral)
31
+ # isolation: worktree # run in an isolated git worktree
32
+ # initialPrompt: "…" # seed the agent's first turn
33
+ # hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
6
34
  ---
7
35
  # FairDB Complete Setup Wizard
8
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentsolutionsio/fairdb-ops-manager",
3
- "version": "1.0.1",
3
+ "version": "1.0.4",
4
4
  "description": "Comprehensive operations manager for FairDB managed PostgreSQL service - SOPs, incident response, monitoring, and automation",
5
5
  "keywords": [
6
6
  "database",
@@ -1,32 +0,0 @@
1
- #!/bin/bash
2
- # Skill validation helper
3
- # Validates skill activation and functionality
4
-
5
- set -e
6
-
7
- echo "🔍 Validating skill..."
8
-
9
- # Check if SKILL.md exists
10
- if [ ! -f "../SKILL.md" ]; then
11
- echo "❌ Error: SKILL.md not found"
12
- exit 1
13
- fi
14
-
15
- # Validate frontmatter
16
- if ! grep -q "^---$" "../SKILL.md"; then
17
- echo "❌ Error: No frontmatter found"
18
- exit 1
19
- fi
20
-
21
- # Check required fields
22
- if ! grep -q "^name:" "../SKILL.md"; then
23
- echo "❌ Error: Missing 'name' field"
24
- exit 1
25
- fi
26
-
27
- if ! grep -q "^description:" "../SKILL.md"; then
28
- echo "❌ Error: Missing 'description' field"
29
- exit 1
30
- fi
31
-
32
- echo "✅ Skill validation passed"