# `build_support/` is not shipped in the published package, so its absence is # how this file knows it is running inside a consumer's deps/ rather than in a # source checkout. Guard on the file, not on a directory shape: a shape test # breaks when the repo is vendored at a different depth or used as a git dep. workspace_helper = Path.expand("build_support/dependency_sources.exs", __DIR__) if File.regular?(workspace_helper) and not Code.ensure_loaded?(DependencySources) do Code.require_file(workspace_helper) end defmodule AmpSdk.MixProject do use Mix.Project @workspace_checkout? File.regular?(Path.expand("build_support/dependency_sources.exs", __DIR__)) @app :amp_sdk @version "0.8.0" @source_url "https://github.com/nshkrdotcom/amp_sdk" @homepage_url "https://hex.pm/packages/amp_sdk" @docs_url "https://hexdocs.pm/amp_sdk" def project do [ app: @app, version: @version, elixir: "~> 1.19", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, deps: deps(), aliases: aliases(), docs: docs(), description: description(), package: package(), name: "AmpSdk", source_url: @source_url, homepage_url: @homepage_url, dialyzer: dialyzer() ] end def application do [ mod: {AmpSdk.Application, []}, extra_applications: [:logger] ] end def cli do [ preferred_envs: [ ci: :test ] ] end defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] defp deps do [ cli_subprocess_core_dep(), {:jason, "~> 1.4"}, {:zoi, "~> 0.18"}, {:ex_doc, "~> 0.40", only: :dev, runtime: false}, {:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}, {:credo, "~> 1.7", only: [:dev, :test], runtime: false}, {:supertester, "~> 0.6.0", only: :test} ] end defp cli_subprocess_core_dep do workspace_dep(:cli_subprocess_core, "~> 0.7.0") end defp description do "An Elixir SDK for the Amp CLI - programmatic access to Amp's AI coding agent." end defp docs do [ main: "readme", name: "AmpSdk", source_ref: "v#{@version}", source_url: @source_url, homepage_url: @homepage_url, assets: %{"assets" => "assets"}, logo: "assets/amp_sdk.svg", extras: [ {"README.md", title: "Overview", filename: "readme"}, {"guides/getting-started.md", title: "Getting Started"}, {"guides/configuration.md", title: "Configuration"}, {"guides/streaming.md", title: "Streaming"}, {"guides/permissions.md", title: "Permissions"}, {"guides/threads.md", title: "Threads"}, {"guides/error-handling.md", title: "Error Handling"}, {"guides/testing.md", title: "Testing"}, {"guides/tools-and-management.md", title: "Tools And Management"}, {"guides/migrating-to-0.7.md", title: "Migrating to 0.7"}, {"guides/migrating-to-0.8.md", title: "Migrating to 0.8"}, {"guides/migrating-to-0.6.md", title: "Migrating to 0.6"}, {"guides/provider_behavior_manifest.md", title: "Provider Behavior Manifest"}, {"examples/README.md", title: "Examples", filename: "examples"}, {"CHANGELOG.md", title: "Changelog"}, {"LICENSE", title: "License"} ], groups_for_extras: [ "Project Overview": ["README.md"], Foundations: [ "guides/getting-started.md", "guides/configuration.md", "guides/permissions.md" ], Runtime: [ "guides/streaming.md", "guides/threads.md", "guides/tools-and-management.md" ], Quality: [ "guides/error-handling.md", "guides/testing.md", "guides/provider_behavior_manifest.md" ], Examples: ["examples/README.md"], Reference: [ "guides/migrating-to-0.8.md", "guides/migrating-to-0.7.md", "guides/migrating-to-0.6.md", "CHANGELOG.md", "LICENSE" ] ], groups_for_modules: [ "Core API": [ AmpSdk, AmpSdk.Stream, AmpSdk.Threads, AmpSdk.Tools, AmpSdk.Review, AmpSdk.Command ], Management: [ AmpSdk.Tasks, AmpSdk.Skills, AmpSdk.Permissions, AmpSdk.MCP, AmpSdk.Usage ], Types: [ AmpSdk.Types, AmpSdk.Types.Options, AmpSdk.Types.Permission, AmpSdk.Types.SystemMessage, AmpSdk.Types.AssistantMessage, AmpSdk.Types.AssistantPayload, AmpSdk.Types.UserMessage, AmpSdk.Types.UserPayload, AmpSdk.Types.ResultMessage, AmpSdk.Types.ErrorResultMessage, AmpSdk.Types.UserInputMessage, AmpSdk.Types.TextContent, AmpSdk.Types.ToolUseContent, AmpSdk.Types.ToolResultContent, AmpSdk.Types.ThinkingContent, AmpSdk.Types.Usage, AmpSdk.Types.MCPServerStatus, AmpSdk.Types.ThreadSummary, AmpSdk.Types.PermissionRule, AmpSdk.Types.MCPServer, AmpSdk.Types.MCPStdioServer, AmpSdk.Types.MCPHttpServer ], Infrastructure: [ AmpSdk.CLI, AmpSdk.Runtime.CLI ] ], before_closing_head_tag: &before_closing_head_tag/1, before_closing_body_tag: &before_closing_body_tag/1 ] end defp before_closing_head_tag(:html) do """ """ end defp before_closing_head_tag(:epub), do: "" defp before_closing_body_tag(:html), do: "" defp before_closing_body_tag(:epub), do: "" # In a source checkout the registry decides the source (path first). In a # published package there is no registry, and the requirement stated here is # the whole answer. defp workspace_dep(app, hex_requirement, opts \\ []) do if @workspace_checkout? do apply(DependencySources, :dep, [app, __DIR__, opts]) else if opts == [], do: {app, hex_requirement}, else: {app, hex_requirement, opts} end end defp package do [ name: "amp_sdk", description: description(), licenses: ["MIT"], links: %{ "GitHub" => @source_url, "Hex" => @homepage_url, "HexDocs" => @docs_url, "Amp" => "https://ampcode.com", "License" => "#{@source_url}/blob/main/LICENSE", "Changelog" => "#{@source_url}/blob/main/CHANGELOG.md" }, maintainers: ["nshkrdotcom"], files: ~w(lib assets mix.exs README.md LICENSE CHANGELOG.md examples guides), exclude_patterns: [ "**/_build/**", "**/deps/**", "**/doc/**", "**/*.beam", "**/*.plt", "**/*.plt.hash", "examples/_output/**" ] ] end defp dialyzer do [ plt_add_apps: [:mix, :ex_unit], plt_core_path: "priv/plts/core", plt_local_path: "priv/plts" ] end defp aliases do [ ci: [ "format --check-formatted", "compile --warnings-as-errors", "test", "credo --strict", "dialyzer" ] ] end end