Portable AI agent context, skills, and role guidance for software projects.

Maintainers

Package info

github.com/Jean-PierreGassin/ai-context

pkg:composer/jean-pierre-gassin/ai-context

Statistics

Installs: 44

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2026-05-23 03:04 UTC

This package is auto-updated.

Last update: 2026-05-23 03:11:00 UTC


README

Shared AI-assistant context for projects that use AGENTS.md, .agents/skills, .claude/skills, or similar local guidance files.

The package ships a small baseline of workflow guidance and reusable skills. It installs regular files into the consuming project, keeps existing project files intact by default, and can be wired into Composer's normal install/update lifecycle.

Installation

Add the installer to your root composer.json scripts:

{
  "scripts": {
    "post-install-cmd": [
      "JeanPierreGassin\\AiContext\\Installer::installFromComposer"
    ],
    "post-update-cmd": [
      "JeanPierreGassin\\AiContext\\Installer::installFromComposer"
    ]
  }
}

Then require the package:

composer require jean-pierre-gassin/ai-context

Run Composer as usual after that:

composer install
composer update jean-pierre-gassin/ai-context

What It Adds

  • AGENTS.md
  • CLAUDE.md
  • .agents/skills/*
  • .claude/skills/*
  • .claude/settings.json
  • .codex/config.toml
  • Managed ignore files for package-owned skills

The .claude skill files point back to the matching .agents skills, so the main skill content stays in one place.

Existing Projects

The installer is conservative:

  • Identical files are skipped silently.
  • Changed files require a y or yes confirmation before overwrite.
  • Installed files are copied, not symlinked.
  • Managed .gitignore entries only cover the skill names provided by this package and the managed ignore file itself.
  • Project-specific skills and local guidance can still be tracked normally.