halo-change-request

halo-change-request is a skill for Claude Code from automateyournetwork/netclaw. It costs 66 tokens per session (3,183 once invoked), scanned A, original, Apache-2.0.

A guided way to open a change request in HaloPSA or HaloITSM, where a change request is a ticket type used to record a planned IT change. It discovers the organisation's configured change type, shows a preview, asks for confirmation, and then submits it.

In plain words
What is it for?
Finding the appropriate change-request form, previewing the proposed ticket, confirming its fields, and submitting an approved IT change.
Why use it?
It helps avoid filing the request under the wrong ticket type or sending incomplete change details.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: built for openclaw.

Good fit Finding the appropriate change-request form, previewing the proposed ticket, confirming its fields, and submitting an approved IT change.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/automateyournetwork/netclaw/halo-change-request
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add automateyournetwork/netclaw --skill halo-change-request
Clone the repo
git clone --depth 1 https://github.com/automateyournetwork/netclaw

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for halo-change-request

README.md
[![agentmods](https://agentmods.dev/badge/skills/automateyournetwork/netclaw/halo-change-request/github.svg)](https://agentmods.dev/skills/automateyournetwork/netclaw/halo-change-request)
Your own site
<a href="https://agentmods.dev/skills/automateyournetwork/netclaw/halo-change-request"><img src="https://agentmods.dev/badge/skills/automateyournetwork/netclaw/halo-change-request/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for halo-change-request

Your own site · 80×15
<a href="https://agentmods.dev/skills/automateyournetwork/netclaw/halo-change-request"><img src="https://agentmods.dev/badge/skills/automateyournetwork/netclaw/halo-change-request.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,183 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00066 $0.03183
Opus 5 $0.00033 $0.01591
Sonnet 5 $0.00013 $0.00637
Haiku 4.5 $0.00007 $0.00318

Measured 9d ago against content hash 29dde4bb6090, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

halo-change-request scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

workspace/skills/halo-change-request/SKILL.md · 177 lines

How it starts

The opening of the file, as written. The whole thing — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Halo Change Request

Open a change request in Halo through a strict discover -> preview -> confirm -> submit flow. Halo is HaloPSA / HaloITSM (the same product and the same REST API — HaloPSA is the MSP edition, HaloITSM the internal-IT edition). A "change request" in Halo is not a fixed object type: it is simply a ticket type ("Request Type") whose numeric id and custom fields are configured per organization — and an org often defines several change types (for example a customer-facing change and an internal change). This skill figures out which change is being raised, discovers the matching type, confirms it with a human, remembers it per category, learns its fields, and gates the single write behind explicit approval.

MCP Server

  • Server: halo-mcp (NetClaw-authored, mcp-servers/halo-mcp/)
  • Command: python3 -u mcp-servers/halo-mcp/halo_mcp_server.py (stdio transport)
  • Auth: OAuth2 client-credentials — HALO_CLIENT_ID / HALO_CLIENT_SECRET against HALO_BASE_URL (token from <base>/auth/token, resource API at <base>/api)
  • Python: 3.10+ · Dependencies: fastmcp, httpx, python-dotenv
  • Read/write posture: read-only except one gated writehalo_create_change_request is the ONLY tool in the entire server that can mutate Halo, and it previews (no write) unless submit=true.

This skill also uses the Memory MCP server (memory-mcp) to cache the confirmed change ticket type per Halo tenant.

Available Tools

Tool Parameters What It Does
halo_list_ticket_types can_create_only?, customer?, showcounts? Discover ticket types ("Request Types"). Use can_create_only=true to find the org's CHANGE type
halo_get_ticket_type ticket_type Authoritative field schema for a type — required/optional/visible field definitions
halo_list_fields custom_only? Master FieldInfo catalog (ids <-> names <-> dropdown option values)
halo_get_field field One field definition by numeric id, with its lookup values
halo_list_tickets ticket_type?, customer?, asset_id?, status?, open_only?, search? Find a sample existing change to copy field patterns from
halo_get_ticket ticket (numeric id) Read one populated ticket as a concrete example
halo_create_change_request summary, details, ticket_type, customer?, site?, user?, asset?, custom_fields?, submit=false THE ONLY WRITE. Previews the exact POST body unless submit=true
halo_list_clients search? Resolve a Halo Client name to its id (the customer param)
halo_list_sites customer?, search? Resolve a site within a client
halo_list_users customer?, site_id?, search? Resolve the requesting contact/user
memory_get_facts entity, key? Recall the tenant's change-type catalog (key="change_ticket_types")
memory_record_fact entity, key, value, metadata? Merge a confirmed change type ({id, name, category}) into the catalog
memory_record_decision context, decision, rationale, ... Log the human's ticket-type confirmation
memory_invalidate fact_id, reason Retire a cached ticket type that no longer resolves

Read the full file on GitHub · 177 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 177 lines · 66 tokens per session scan A 29dde4bb6090

Subscribe to this mod's changes

halo-change-request is a skill published in the GitHub repository automateyournetwork/netclaw (657 stars, last pushed 6d ago), licensed Apache-2.0. It adds 66 tokens to every session and 3,183 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

recipe-create-meet-space

Create a Google Meet meeting space and share the join link.

googleworkspace/cli · 18 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

projects

List all managed projects with status, branch, open PRs, and open issue counts — portfolio-level view.

me2resh/apexyard · 24 tokens

magpie-security-issue-import-from-md

Open one or more tracking issues from a markdown file containing a batch of security findings. Each finding becomes one tracker landing in the Needs triage board column. The file itself is the full report — there is no inbound reporter to reply to and no PR to inspect.

apache/magpie · 73 tokens