Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/hol-skill-validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Validate Skill
on:
push:
branches: [main, master]
pull_request:
workflow_dispatch:

concurrency:
group: skill-validate-${{ github.ref }}
cancel-in-progress: true

jobs:
validate:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Validate skill
uses: hashgraph-online/skill-publish@8f3c91d7d4cde7b104549e5f0cccdbb4cd7ee58d # v1
with:
skill-dir: .
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Point skill-dir to an actual skill package

The workflow validates skill-dir: ., but this repository does not contain the required SKILL.md and skill.json files at the root (or elsewhere); I checked the tree with rg --files | rg 'SKILL\.md|skill\.json' and found none. hashgraph-online/skill-publish documents skill-dir as required and expects those files, so this step will fail for every push/PR and can block CI until the path is changed to a real skill package directory (or the workflow is scoped to repos/paths that have one).

Useful? React with 👍 / 👎.

mode: validate
16 changes: 16 additions & 0 deletions SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: pal-mcp-server
description: The power of Claude Code / GeminiCLI / CodexCLI + [Gemini / OpenAI / OpenRouter / Azure / Grok / Ollama / Custom Model / All Of The Above] working as one.
---

# PAL MCP Server

The power of Claude Code / GeminiCLI / CodexCLI + [Gemini / OpenAI / OpenRouter / Azure / Grok / Ollama / Custom Model / All Of The Above] working as one.

## Installation

See https://github.com/BeehiveInnovations/pal-mcp-server for setup instructions.

## Available Tools

See the project README for the complete list of available MCP tools.
13 changes: 13 additions & 0 deletions skill.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "pal-mcp-server",
"version": "0.1.0",
"description": "The power of Claude Code / GeminiCLI / CodexCLI + various AI models working as one.",
"author": {
"name": "BeehiveInnovations",
"url": "https://github.com/BeehiveInnovations"
},
"homepage": "https://github.com/BeehiveInnovations/pal-mcp-server",
"repository": "https://github.com/BeehiveInnovations/pal-mcp-server",
"keywords": ["mcp", "codex"],
"license": "MIT"
}
Loading