New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@handsupmin/shift-ax

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@handsupmin/shift-ax

Agentic software delivery platform for teams that are not AX experts yet

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

Shift AX

Request-to-commit guardrails for Codex and Claude Code.

한국어: README.ko.md

What it is

Shift AX sits on top of coding-agent runtimes and makes them work in a safer delivery loop:

  • capture reusable work knowledge in ~/.shift-ax/
  • resolve context before planning
  • create a request-scoped topic/worktree
  • pause at human plan review
  • resume through verification, review, and commit

It is for teams that want a repeatable workflow, not prompt rituals.

Install

npm install -g @handsupmin/shift-ax

Or:

curl -fsSL https://raw.githubusercontent.com/handsupmin/shift-ax/main/scripts/install-global.sh | bash

From a source checkout:

npm install
npm run build
npm link

How to use it

Start a shell

shift-ax --codex

or

shift-ax --claude-code

On first run, Shift AX asks:

  • preferred language
  • whether full-auto should be enabled by default

Those settings are stored in:

  • ~/.shift-ax/settings.json

If full-auto is enabled:

  • Codex gets --yolo
  • Claude Code gets --dangerously-skip-permissions

Onboard your reusable context

Shift AX keeps reusable knowledge in:

  • ~/.shift-ax/index.md
  • ~/.shift-ax/work-types/
  • ~/.shift-ax/procedures/
  • ~/.shift-ax/domain-language/

Inside the runtime:

  • Codex: $onboard
  • Claude Code: /onboard

Start work

Inside the runtime:

  • Codex: $request <text>
  • Claude Code: /request <text>

Other common commands:

  • Codex: $doctor, $status, $topics, $resume, $review, $export-context
  • Claude Code: /doctor, /status, /topics, /resume, /review, /export-context

CLI mode

You can also run the workflow directly:

shift-ax onboard-context --discover
shift-ax run-request --request "Build safer auth refresh flow"
shift-ax approve-plan --topic .ax/topics/<topic> --reviewer "Alex" --decision approve
shift-ax run-request --topic .ax/topics/<topic> --resume

Give this prompt to another LLM

If you want another LLM to install and use Shift AX for you, give it this:

You are setting up and using Shift AX in this repository.

Goal:
- install Shift AX
- start the correct runtime shell
- onboard reusable context
- start the first request safely

Rules:
- use `shift-ax`, not `ax`, in user-facing commands
- if Shift AX is not installed, run `npm install -g @handsupmin/shift-ax`
- if working from a source checkout instead of a global install, run:
  - `npm install`
  - `npm run build`
  - `npm link`
- prefer `shift-ax --codex` unless the user explicitly wants Claude Code
- on first run, answer the language question using the user's language preference
- on first run, answer the full-auto question cautiously
- if `~/.shift-ax/index.md` does not exist, onboard first
- in Codex use `$onboard` and `$request ...`
- in Claude Code use `/onboard` and `/request ...`
- do not start implementation before plan approval
- if shared policy/context docs must change first, update them before resume

Suggested first commands:
1. `shift-ax --codex`
2. run `$onboard`
3. run `$request <the user's task>`

More docs

FAQs

Package last updated on 10 Apr 2026

Related posts