Skip to content
Merged
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
11 changes: 11 additions & 0 deletions .claude/skills/just-commands/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: just-commands
description: Available just commands for this project. Use when you need to know what development commands are available.
user-invocable: false
Copy link

Copilot AI Jan 31, 2026

Choose a reason for hiding this comment

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

user-invocable: false conflicts with CLAUDE.md referencing this skill as a way to discover commands. If the intent is for developers to manually invoke it, set it to user-invocable; if the intent is automatic loading, update the surrounding docs in CLAUDE.md to reflect that skills are not purely manual in this repo.

Suggested change
user-invocable: false
user-invocable: true

Copilot uses AI. Check for mistakes.
---

## Available just commands

```
!`just --list`
```
23 changes: 6 additions & 17 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,15 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
| **uv-scripts** | `scripts/**/*.py` | Utility script standards with UV |
| **examples-standards** | `examples/**/*` | Example requirements and organization |

## Project Overview

StackOne AI SDK is a Python library that provides a unified interface for accessing various SaaS tools through AI-friendly APIs. It acts as a bridge between AI applications and multiple SaaS platforms (HRIS, CRM, ATS, LMS, Marketing, etc.) with support for OpenAI, LangChain, CrewAI, and Model Context Protocol (MCP).

## Essential Development Commands
## Available Skills

```bash
# Setup and installation
just install # Install dependencies and pre-commit hooks
| Skill | Description |
| ----------------- | -------------------------------------------- |
| **just-commands** | Available just commands (dynamically loaded) |
Comment on lines +26 to +28
Copy link

Copilot AI Jan 31, 2026

Choose a reason for hiding this comment

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

The sentence claims Claude will “automatically reference” the just-commands skill, but earlier in this same file skills are described as “Manually invoked”. Please align the documentation (either clarify that this skill is auto-loaded, or update this line to describe the manual invocation mechanism).

Suggested change
| Skill | Description |
| ----------------- | -------------------------------------------- |
| **just-commands** | Available just commands (dynamically loaded) |
| Skill | Description |
| ----------------- | -------------------------------------------------------- |
| **just-commands** | Manually invoked skill that lists available just commands |

Copilot uses AI. Check for mistakes.

# Code quality
just lint # Run ruff linting
just lint-fix # Auto-fix linting issues
just ty # Run type checking
## Project Overview
Copy link

Copilot AI Jan 31, 2026

Choose a reason for hiding this comment

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

This PR removes the static command list from CLAUDE.md to avoid drift, but there is still a static “Essential Commands” list in .claude/rules/development-workflow.md that appears out of sync with the current justfile (e.g., it references just lint-fix but the justfile defines format). Consider updating that rule to reference this skill or to use just --list as well, so there is a single source of truth.

Copilot uses AI. Check for mistakes.

# Testing
just test # Run all tests
just test-tools # Run tool-specific tests
just test-examples # Run example tests
```
StackOne AI SDK is a Python library that provides a unified interface for accessing various SaaS tools through AI-friendly APIs with support for OpenAI, LangChain, CrewAI, and Model Context Protocol (MCP).

## Code Architecture

Expand Down