Skip to content

v1.0.0: Production Release

Latest

Choose a tag to compare

@lhassa8 lhassa8 released this 22 Jan 19:57
· 17 commits to main since this release

v1.0.0 - Production Release

SkillForge is now production-ready! This release completes the roadmap from v0.9.0 to v1.0.0.

Installation

pip install ai-skillforge

Or with AI features:

pip install ai-skillforge[ai]

PyPI: https://pypi.org/project/ai-skillforge/1.0.0/

Added

  • Enterprise Configuration - Full enterprise deployment support

    • SSO authentication support (SAML, OIDC)
    • Cloud storage backends (S3, GCS, Azure Blob)
    • Proxy configuration with SSL verification options
    • Telemetry and logging configuration
    • Environment variable overrides with SKILLFORGE_ prefix
    • User and project-level configuration files
  • Configuration CLI Commands

    • skillforge config show - Display current configuration
    • skillforge config set <key> <value> - Set configuration values
    • skillforge config path - Show configuration file locations
    • skillforge config init - Create configuration files (user/project)
  • Migration Tools - Upgrade skills from older formats

    • Auto-detect skill format versions (v0.1, v0.9, v1.0)
    • skillforge migrate check ./skills - List skills needing migration
    • skillforge migrate run ./skills/my-skill - Migrate a skill to v1.0
    • skillforge migrate preview ./skills/my-skill - Preview changes
    • Automatic backup creation before migration
    • Batch directory migration support
  • Stable Public API - skillforge.api module

    • Comprehensive exports of all public classes and functions
    • Semantic versioning guarantees for all exported APIs
    • deprecated() decorator for managing API deprecations
  • Enhanced Commands

    • skillforge doctor - Check installation and environment
    • skillforge info - Show detailed SkillForge information

Changed

  • Updated default model to claude-sonnet-4-20250514
  • All public APIs are now stable with deprecation warnings before removal

Full Changelog

See CHANGELOG.md for complete details.