@cleocode/caamp 1.9.1 → 2026.3.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -130,7 +130,7 @@ Recommendation criteria flags:
130
130
  --select <index> # select from ranked CHOOSE list
131
131
  ```
132
132
 
133
- LAFS canonical spec: https://github.com/kryptobaseddev/lafs-protocol/blob/main/lafs.md
133
+ LAFS canonical spec: https://github.com/kryptobaseddev/lafs/blob/main/lafs.md
134
134
 
135
135
  ### MCP Servers
136
136
 
@@ -251,7 +251,7 @@ Each provider uses a different key name for MCP server configuration:
251
251
  | [Security Policy](https://codluv.gitbook.io/caamp/contributing/security) | Private vulnerability disclosure process |
252
252
  | [LAFS Compliance Profile](https://codluv.gitbook.io/caamp/api-and-reference/lafs-compliance) | CAAMP-specific LAFS adoption scope and compliance mapping |
253
253
  | [Agents Directory Standard](https://codluv.gitbook.io/caamp/api-and-reference/agents-directory-standard) | `.agents/` standard directory structure |
254
- | [LAFS Specification](https://github.com/kryptobaseddev/lafs-protocol/blob/main/lafs.md) | Canonical cross-language LLM-agent-first protocol |
254
+ | [LAFS Specification](https://github.com/kryptobaseddev/lafs/blob/main/lafs.md) | Canonical cross-language LLM-agent-first protocol |
255
255
  | [Technical Specification](claudedocs/specs/CAAMP-SPEC.md) | RFC 2119 spec covering all subsystems |
256
256
  | [Vision & Architecture](claudedocs/VISION.md) | Project vision, design philosophy, and architecture |
257
257
  | [Gap Analysis & Roadmap](claudedocs/GAP-ANALYSIS.md) | Current state vs plan, v0.2.0+ roadmap |
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/dist/cli.d.ts CHANGED
File without changes
package/dist/cli.js CHANGED
@@ -101,7 +101,7 @@ import { readFile } from "fs/promises";
101
101
  import { randomUUID } from "crypto";
102
102
  import {
103
103
  isRegisteredErrorCode
104
- } from "@cleocode/lafs-protocol";
104
+ } from "@cleocode/lafs";
105
105
  var LAFSCommandError = class extends Error {
106
106
  /** LAFS error code identifying the failure type. */
107
107
  code;
@@ -750,7 +750,7 @@ import pc from "picocolors";
750
750
 
751
751
  // src/core/lafs.ts
752
752
  import { randomUUID as randomUUID2 } from "crypto";
753
- import { resolveOutputFormat } from "@cleocode/lafs-protocol";
753
+ import { resolveOutputFormat } from "@cleocode/lafs";
754
754
  function resolveFormat(options) {
755
755
  return resolveOutputFormat({
756
756
  jsonFlag: options.jsonFlag ?? false,
@@ -2722,7 +2722,7 @@ function registerMcpCommands(program2) {
2722
2722
 
2723
2723
  // src/commands/providers.ts
2724
2724
  import { randomUUID as randomUUID3 } from "crypto";
2725
- import { resolveOutputFormat as resolveOutputFormat2 } from "@cleocode/lafs-protocol";
2725
+ import { resolveOutputFormat as resolveOutputFormat2 } from "@cleocode/lafs";
2726
2726
  import pc11 from "picocolors";
2727
2727
  function registerProvidersCommand(program2) {
2728
2728
  const providers = program2.command("providers").description("Manage AI agent providers");
@@ -3833,7 +3833,7 @@ function registerSkillsRemove(parent) {
3833
3833
 
3834
3834
  // src/commands/skills/list.ts
3835
3835
  import { randomUUID as randomUUID4 } from "crypto";
3836
- import { resolveOutputFormat as resolveOutputFormat3 } from "@cleocode/lafs-protocol";
3836
+ import { resolveOutputFormat as resolveOutputFormat3 } from "@cleocode/lafs";
3837
3837
  import pc14 from "picocolors";
3838
3838
  function registerSkillsList(parent) {
3839
3839
  parent.command("list").description("List installed skills").option("-g, --global", "List global skills").option("-a, --agent <name>", "List skills for specific agent").option("--json", "Output as JSON (default)").option("--human", "Output in human-readable format").action(async (opts) => {
@@ -3940,7 +3940,7 @@ function emitJsonError3(operation, mvi, code, message, category, details = {}) {
3940
3940
  import { randomUUID as randomUUID5 } from "crypto";
3941
3941
  import {
3942
3942
  resolveOutputFormat as resolveOutputFormat4
3943
- } from "@cleocode/lafs-protocol";
3943
+ } from "@cleocode/lafs";
3944
3944
  import pc15 from "picocolors";
3945
3945
  var SkillsFindValidationError = class extends Error {
3946
3946
  code;
@@ -4714,7 +4714,7 @@ ${results.length} file(s) scanned, ${totalFindings} finding(s)`));
4714
4714
  }
4715
4715
 
4716
4716
  // src/commands/skills/validate.ts
4717
- import { resolveOutputFormat as resolveOutputFormat5 } from "@cleocode/lafs-protocol";
4717
+ import { resolveOutputFormat as resolveOutputFormat5 } from "@cleocode/lafs";
4718
4718
  import pc20 from "picocolors";
4719
4719
  function registerSkillsValidate(parent) {
4720
4720
  parent.command("validate").description("Validate SKILL.md format").argument("[path]", "Path to SKILL.md", "SKILL.md").option("--json", "Output as JSON (default)").option("--human", "Output in human-readable format").action(async (path, opts) => {