iamai 0.2.2a1.dev2__tar.gz → 0.2.3__tar.gz
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.
- iamai-0.2.3/.github/ISSUE_TEMPLATE/ecosystem-submission.yml +104 -0
- {iamai-0.2.2a1.dev2 → iamai-0.2.3}/.github/workflows/changelog.yml +3 -8
- iamai-0.2.3/.github/workflows/check.yml +107 -0
- {iamai-0.2.2a1.dev2 → iamai-0.2.3}/.github/workflows/release.yml +46 -76
- iamai-0.2.3/.gitignore +21 -0
- iamai-0.2.3/.readthedocs.yaml +13 -0
- iamai-0.2.3/Cargo.lock +235 -0
- iamai-0.2.3/Cargo.toml +16 -0
- iamai-0.2.3/PKG-INFO +177 -0
- iamai-0.2.3/README.md +165 -0
- iamai-0.2.3/README.zh.md +165 -0
- iamai-0.2.3/docs/Makefile +14 -0
- iamai-0.2.3/docs/_ext/iamai_blog.py +393 -0
- iamai-0.2.3/docs/_ext/iamai_i18n_versions.py +146 -0
- iamai-0.2.3/docs/_ext/iamai_mermaid.py +66 -0
- iamai-0.2.3/docs/_ext/iamai_store.py +510 -0
- iamai-0.2.3/docs/_static/brand/favicon.ico +0 -0
- iamai-0.2.3/docs/_static/brand/iamai-icon-128.png +0 -0
- iamai-0.2.3/docs/_static/brand/iamai-icon-16.png +0 -0
- iamai-0.2.3/docs/_static/brand/iamai-icon-180.png +0 -0
- iamai-0.2.3/docs/_static/brand/iamai-icon-192.png +0 -0
- iamai-0.2.3/docs/_static/brand/iamai-icon-256.png +0 -0
- iamai-0.2.3/docs/_static/brand/iamai-icon-32.png +0 -0
- iamai-0.2.3/docs/_static/brand/iamai-icon-48.png +0 -0
- iamai-0.2.3/docs/_static/brand/iamai-icon-512.png +0 -0
- iamai-0.2.3/docs/_static/brand/iamai-icon-64.png +0 -0
- iamai-0.2.3/docs/_static/brand/iamai-logo-wide.svg +58 -0
- iamai-0.2.3/docs/_static/brand/iamai-logo.svg +55 -0
- iamai-0.2.3/docs/_static/custom.css +150 -0
- iamai-0.2.3/docs/_static/iamai-blog.css +426 -0
- iamai-0.2.3/docs/_static/iamai-docs-switcher.css +147 -0
- iamai-0.2.3/docs/_static/iamai-docs-switcher.js +97 -0
- iamai-0.2.3/docs/_static/iamai-mermaid.js +29 -0
- iamai-0.2.3/docs/_static/iamai-store.css +526 -0
- iamai-0.2.3/docs/_static/iamai-store.js +729 -0
- iamai-0.2.3/docs/community/blog/index.rst +7 -0
- iamai-0.2.3/docs/community/blog/posts/adapter-conformance.rst +20 -0
- iamai-0.2.3/docs/community/blog/posts/architecture-lifecycle.rst +43 -0
- iamai-0.2.3/docs/community/blog/posts/community-store.rst +20 -0
- iamai-0.2.3/docs/community/index.rst +27 -0
- iamai-0.2.3/docs/community/store.rst +7 -0
- iamai-0.2.3/docs/concepts.rst +76 -0
- iamai-0.2.3/docs/conf.py +100 -0
- iamai-0.2.3/docs/ecosystem/entries/adapter.onebot11.json +17 -0
- iamai-0.2.3/docs/ecosystem/entries/adapter.onebot11_http_builtin.json +20 -0
- iamai-0.2.3/docs/ecosystem/entries/adapter.onebot11_reverse_ws_builtin.json +20 -0
- iamai-0.2.3/docs/ecosystem/entries/adapter.onebot11_ws_builtin.json +20 -0
- iamai-0.2.3/docs/ecosystem/entries/adapter.telegram.json +17 -0
- iamai-0.2.3/docs/ecosystem/entries/adapter.terminal.json +17 -0
- iamai-0.2.3/docs/ecosystem/entries/adapter.webhook.json +18 -0
- iamai-0.2.3/docs/ecosystem/entries/agent_tool.group_digest_example.json +20 -0
- iamai-0.2.3/docs/ecosystem/entries/agent_tool.planner_executor_example.json +20 -0
- iamai-0.2.3/docs/ecosystem/entries/agent_tool.react_tools_example.json +20 -0
- iamai-0.2.3/docs/ecosystem/entries/agent_tool.supervisor_team_example.json +20 -0
- iamai-0.2.3/docs/ecosystem/entries/agent_tool.web_search.json +16 -0
- iamai-0.2.3/docs/ecosystem/entries/plugin.arcade_quests_example.json +19 -0
- iamai-0.2.3/docs/ecosystem/entries/plugin.group_assistant_example.json +19 -0
- iamai-0.2.3/docs/ecosystem/entries/plugin.life_sim_example.json +19 -0
- iamai-0.2.3/docs/ecosystem/entries/plugin.management.json +24 -0
- iamai-0.2.3/docs/ecosystem/entries/plugin.persona_rp_example.json +19 -0
- iamai-0.2.3/docs/ecosystem/entries/plugin.story_director_example.json +19 -0
- iamai-0.2.3/docs/ecosystem/entries/state_backend.sqlite.json +17 -0
- iamai-0.2.3/docs/ecosystem/entries/template.echo_runtime.json +15 -0
- iamai-0.2.3/docs/ecosystem/index.rst +8 -0
- iamai-0.2.3/docs/guides/adapters.rst +248 -0
- iamai-0.2.3/docs/guides/agent-runtime.rst +62 -0
- iamai-0.2.3/docs/guides/architecture.rst +140 -0
- iamai-0.2.3/docs/guides/configuration.rst +105 -0
- iamai-0.2.3/docs/guides/ecosystem-comparison.rst +243 -0
- iamai-0.2.3/docs/guides/index.rst +42 -0
- iamai-0.2.3/docs/guides/operations.rst +130 -0
- iamai-0.2.3/docs/guides/plugins.rst +198 -0
- iamai-0.2.3/docs/guides/roadmap.rst +59 -0
- iamai-0.2.3/docs/guides/state-and-sessions.rst +92 -0
- iamai-0.2.3/docs/index.rst +94 -0
- iamai-0.2.3/docs/installation.rst +49 -0
- iamai-0.2.3/docs/locales/README.md +17 -0
- iamai-0.2.3/docs/make.bat +15 -0
- iamai-0.2.3/docs/quickstart.rst +130 -0
- iamai-0.2.3/docs/reference/cli.rst +55 -0
- iamai-0.2.3/docs/reference/configuration.rst +128 -0
- iamai-0.2.3/docs/reference/docs-i18n-versions.rst +51 -0
- iamai-0.2.3/docs/reference/extensions.rst +285 -0
- iamai-0.2.3/docs/reference/index.rst +36 -0
- iamai-0.2.3/docs/reference/quality-gates.rst +29 -0
- iamai-0.2.3/docs/reference/rules.rst +138 -0
- iamai-0.2.3/docs/reference/webhook-signatures.rst +50 -0
- iamai-0.2.3/docs/requirements.txt +6 -0
- iamai-0.2.3/docs/tutorials/index.rst +41 -0
- iamai-0.2.3/docs/tutorials/part-1-terminal-runtime.rst +82 -0
- iamai-0.2.3/docs/tutorials/part-2-commands-rules.rst +162 -0
- iamai-0.2.3/docs/tutorials/part-3-state-sessions.rst +87 -0
- iamai-0.2.3/docs/tutorials/part-4-webhook-production.rst +98 -0
- iamai-0.2.3/docs/tutorials/part-5-adapter-development.rst +198 -0
- iamai-0.2.3/docs/tutorials/part-6-ecosystem-publishing.rst +59 -0
- iamai-0.2.3/examples/_shared/README.md +11 -0
- iamai-0.2.3/examples/_shared/pyproject.toml +10 -0
- iamai-0.2.3/examples/_shared/src/iamai_example_utils/__init__.py +13 -0
- iamai-0.2.3/examples/_shared/src/iamai_example_utils/llm.py +77 -0
- iamai-0.2.3/examples/arcade-runtime/README.md +25 -0
- iamai-0.2.3/examples/arcade-runtime/config.onebot11.napcat.ws_reverse.toml +41 -0
- iamai-0.2.3/examples/arcade-runtime/config.terminal.toml +37 -0
- iamai-0.2.3/examples/arcade-runtime/pyproject.toml +11 -0
- iamai-0.2.3/examples/arcade-runtime/run.py +23 -0
- iamai-0.2.3/examples/arcade-runtime/src/arcade_runtime/__init__.py +1 -0
- iamai-0.2.3/examples/arcade-runtime/src/arcade_runtime/plugins/__init__.py +6 -0
- iamai-0.2.3/examples/arcade-runtime/src/arcade_runtime/plugins/arcade.py +95 -0
- iamai-0.2.3/examples/arcade-runtime/src/arcade_runtime/plugins/chaos.py +14 -0
- iamai-0.2.3/examples/arcade-runtime/src/arcade_runtime/plugins/quests.py +48 -0
- iamai-0.2.3/examples/arcade-runtime/src/arcade_runtime/plugins/session.py +40 -0
- iamai-0.2.3/examples/echo-runtime/README.md +54 -0
- iamai-0.2.3/examples/echo-runtime/config.onebot11.http.toml +27 -0
- iamai-0.2.3/examples/echo-runtime/config.onebot11.napcat.ws_reverse.toml +30 -0
- iamai-0.2.3/examples/echo-runtime/config.onebot11.ws.toml +25 -0
- iamai-0.2.3/examples/echo-runtime/config.onebot11.ws_reverse.toml +26 -0
- iamai-0.2.3/examples/echo-runtime/config.terminal.toml +31 -0
- iamai-0.2.3/examples/echo-runtime/config.webhook.toml +31 -0
- iamai-0.2.3/examples/echo-runtime/logs/echo-runtime.log +37 -0
- iamai-0.2.3/examples/echo-runtime/pyproject.toml +11 -0
- iamai-0.2.3/examples/echo-runtime/run.py +23 -0
- iamai-0.2.3/examples/echo-runtime/src/echo_runtime/__init__.py +1 -0
- iamai-0.2.3/examples/echo-runtime/src/echo_runtime/plugins/__init__.py +3 -0
- iamai-0.2.3/examples/echo-runtime/src/echo_runtime/plugins/echo.py +56 -0
- iamai-0.2.3/examples/group-assistant-runtime/.asterline/state.json +13 -0
- iamai-0.2.3/examples/group-assistant-runtime/README.md +24 -0
- iamai-0.2.3/examples/group-assistant-runtime/config.onebot11.napcat.ws_reverse.toml +41 -0
- iamai-0.2.3/examples/group-assistant-runtime/config.terminal.toml +37 -0
- iamai-0.2.3/examples/group-assistant-runtime/pyproject.toml +13 -0
- iamai-0.2.3/examples/group-assistant-runtime/run.py +23 -0
- iamai-0.2.3/examples/group-assistant-runtime/src/group_assistant_runtime/__init__.py +1 -0
- iamai-0.2.3/examples/group-assistant-runtime/src/group_assistant_runtime/plugins/__init__.py +1 -0
- iamai-0.2.3/examples/group-assistant-runtime/src/group_assistant_runtime/plugins/assistant.py +123 -0
- iamai-0.2.3/examples/group-assistant-runtime/src/group_assistant_runtime/plugins/room.py +49 -0
- iamai-0.2.3/examples/life-sim-runtime/.asterline/state.json +53 -0
- iamai-0.2.3/examples/life-sim-runtime/README.md +23 -0
- iamai-0.2.3/examples/life-sim-runtime/config.onebot11.napcat.ws_reverse.toml +38 -0
- iamai-0.2.3/examples/life-sim-runtime/config.terminal.toml +34 -0
- iamai-0.2.3/examples/life-sim-runtime/pyproject.toml +13 -0
- iamai-0.2.3/examples/life-sim-runtime/run.py +23 -0
- iamai-0.2.3/examples/life-sim-runtime/src/life_sim_runtime/__init__.py +1 -0
- iamai-0.2.3/examples/life-sim-runtime/src/life_sim_runtime/plugins/__init__.py +1 -0
- iamai-0.2.3/examples/life-sim-runtime/src/life_sim_runtime/plugins/life.py +208 -0
- iamai-0.2.3/examples/life-sim-runtime/src/life_sim_runtime/plugins/state.py +49 -0
- iamai-0.2.3/examples/persona-rp-runtime/.asterline/state.json +12 -0
- iamai-0.2.3/examples/persona-rp-runtime/README.md +22 -0
- iamai-0.2.3/examples/persona-rp-runtime/config.onebot11.napcat.ws_reverse.toml +40 -0
- iamai-0.2.3/examples/persona-rp-runtime/config.terminal.toml +36 -0
- iamai-0.2.3/examples/persona-rp-runtime/pyproject.toml +13 -0
- iamai-0.2.3/examples/persona-rp-runtime/run.py +23 -0
- iamai-0.2.3/examples/persona-rp-runtime/src/persona_rp_runtime/__init__.py +1 -0
- iamai-0.2.3/examples/persona-rp-runtime/src/persona_rp_runtime/plugins/__init__.py +1 -0
- iamai-0.2.3/examples/persona-rp-runtime/src/persona_rp_runtime/plugins/lounge.py +33 -0
- iamai-0.2.3/examples/persona-rp-runtime/src/persona_rp_runtime/plugins/persona.py +97 -0
- iamai-0.2.3/examples/planner-executor-runtime/README.md +23 -0
- iamai-0.2.3/examples/planner-executor-runtime/config.onebot11.napcat.ws_reverse.toml +41 -0
- iamai-0.2.3/examples/planner-executor-runtime/config.terminal.toml +36 -0
- iamai-0.2.3/examples/planner-executor-runtime/pyproject.toml +13 -0
- iamai-0.2.3/examples/planner-executor-runtime/run.py +23 -0
- iamai-0.2.3/examples/planner-executor-runtime/src/planner_executor_runtime/__init__.py +1 -0
- iamai-0.2.3/examples/planner-executor-runtime/src/planner_executor_runtime/plugins/__init__.py +1 -0
- iamai-0.2.3/examples/planner-executor-runtime/src/planner_executor_runtime/plugins/executor.py +161 -0
- iamai-0.2.3/examples/planner-executor-runtime/src/planner_executor_runtime/plugins/planner.py +119 -0
- iamai-0.2.3/examples/planner-executor-runtime/src/planner_executor_runtime/plugins/session.py +38 -0
- iamai-0.2.3/examples/react-runtime/README.md +23 -0
- iamai-0.2.3/examples/react-runtime/config.onebot11.napcat.ws_reverse.toml +38 -0
- iamai-0.2.3/examples/react-runtime/config.terminal.toml +33 -0
- iamai-0.2.3/examples/react-runtime/pyproject.toml +13 -0
- iamai-0.2.3/examples/react-runtime/run.py +23 -0
- iamai-0.2.3/examples/react-runtime/src/react_runtime/__init__.py +1 -0
- iamai-0.2.3/examples/react-runtime/src/react_runtime/plugins/__init__.py +1 -0
- iamai-0.2.3/examples/react-runtime/src/react_runtime/plugins/memory.py +40 -0
- iamai-0.2.3/examples/react-runtime/src/react_runtime/plugins/reactor.py +126 -0
- iamai-0.2.3/examples/react-runtime/src/react_runtime/plugins/tools.py +135 -0
- iamai-0.2.3/examples/state-runtime/README.md +23 -0
- iamai-0.2.3/examples/state-runtime/__init__.py +1 -0
- iamai-0.2.3/examples/state-runtime/config.terminal.toml +22 -0
- iamai-0.2.3/examples/state-runtime/pyproject.toml +13 -0
- iamai-0.2.3/examples/state-runtime/run.py +23 -0
- iamai-0.2.3/examples/state-runtime/src/state_runtime/__init__.py +1 -0
- iamai-0.2.3/examples/state-runtime/src/state_runtime/plugins/__init__.py +1 -0
- iamai-0.2.3/examples/state-runtime/src/state_runtime/plugins/states.py +18 -0
- iamai-0.2.3/examples/story-runtime/README.md +24 -0
- iamai-0.2.3/examples/story-runtime/config.onebot11.napcat.ws_reverse.toml +33 -0
- iamai-0.2.3/examples/story-runtime/config.terminal.toml +28 -0
- iamai-0.2.3/examples/story-runtime/pyproject.toml +11 -0
- iamai-0.2.3/examples/story-runtime/run.py +23 -0
- iamai-0.2.3/examples/story-runtime/src/story_runtime/__init__.py +1 -0
- iamai-0.2.3/examples/story-runtime/src/story_runtime/plugins/__init__.py +6 -0
- iamai-0.2.3/examples/story-runtime/src/story_runtime/plugins/cast.py +22 -0
- iamai-0.2.3/examples/story-runtime/src/story_runtime/plugins/director.py +80 -0
- iamai-0.2.3/examples/story-runtime/src/story_runtime/plugins/memory.py +40 -0
- iamai-0.2.3/examples/story-runtime/src/story_runtime/plugins/world.py +19 -0
- iamai-0.2.3/examples/supervisor-team-runtime/README.md +22 -0
- iamai-0.2.3/examples/supervisor-team-runtime/config.onebot11.napcat.ws_reverse.toml +38 -0
- iamai-0.2.3/examples/supervisor-team-runtime/config.terminal.toml +33 -0
- iamai-0.2.3/examples/supervisor-team-runtime/pyproject.toml +13 -0
- iamai-0.2.3/examples/supervisor-team-runtime/run.py +23 -0
- iamai-0.2.3/examples/supervisor-team-runtime/src/supervisor_team_runtime/__init__.py +1 -0
- iamai-0.2.3/examples/supervisor-team-runtime/src/supervisor_team_runtime/plugins/__init__.py +1 -0
- iamai-0.2.3/examples/supervisor-team-runtime/src/supervisor_team_runtime/plugins/briefing.py +33 -0
- iamai-0.2.3/examples/supervisor-team-runtime/src/supervisor_team_runtime/plugins/supervisor.py +167 -0
- iamai-0.2.3/examples/supervisor-team-runtime/src/supervisor_team_runtime/plugins/workers.py +69 -0
- iamai-0.2.3/pyproject.toml +103 -0
- iamai-0.2.3/python/iamai/__init__.py +140 -0
- iamai-0.2.3/python/iamai/__main__.py +6 -0
- iamai-0.2.3/python/iamai/_core.pyi +30 -0
- iamai-0.2.3/python/iamai/adapter.py +53 -0
- iamai-0.2.3/python/iamai/adapters/__init__.py +8 -0
- iamai-0.2.3/python/iamai/adapters/middleware.py +747 -0
- iamai-0.2.3/python/iamai/adapters/onebot11.py +143 -0
- iamai-0.2.3/python/iamai/adapters/telegram.py +175 -0
- iamai-0.2.3/python/iamai/adapters/terminal.py +74 -0
- iamai-0.2.3/python/iamai/adapters/webhook.py +325 -0
- iamai-0.2.3/python/iamai/agent.py +505 -0
- iamai-0.2.3/python/iamai/config.py +523 -0
- iamai-0.2.3/python/iamai/context.py +90 -0
- iamai-0.2.3/python/iamai/core.py +35 -0
- iamai-0.2.3/python/iamai/di.py +19 -0
- iamai-0.2.3/python/iamai/event.py +70 -0
- iamai-0.2.3/python/iamai/httpio.py +313 -0
- iamai-0.2.3/python/iamai/logging.py +102 -0
- iamai-0.2.3/python/iamai/message.py +93 -0
- iamai-0.2.3/python/iamai/middleware.py +48 -0
- iamai-0.2.3/python/iamai/net.py +87 -0
- iamai-0.2.3/python/iamai/observability.py +92 -0
- iamai-0.2.3/python/iamai/permissions.py +156 -0
- iamai-0.2.3/python/iamai/plugin.py +242 -0
- iamai-0.2.3/python/iamai/plugins/__init__.py +6 -0
- iamai-0.2.3/python/iamai/plugins/management.py +252 -0
- iamai-0.2.3/python/iamai/plugins/management_api.py +123 -0
- iamai-0.2.3/python/iamai/py.typed +1 -0
- iamai-0.2.3/python/iamai/rules.py +696 -0
- iamai-0.2.3/python/iamai/runtime.py +1484 -0
- iamai-0.2.3/python/iamai/session.py +105 -0
- iamai-0.2.3/python/iamai/state.py +125 -0
- iamai-0.2.3/python/iamai/testing/__init__.py +17 -0
- iamai-0.2.3/python/iamai/testing/adapters.py +45 -0
- iamai-0.2.3/python/iamai/validation.py +79 -0
- iamai-0.2.3/python/iamai/webhook_security.py +242 -0
- iamai-0.2.3/scripts/check_example_configs.sh +7 -0
- iamai-0.2.3/scripts/typecheck.sh +8 -0
- iamai-0.2.3/scripts/validate_ecosystem_store.py +65 -0
- iamai-0.2.3/src/lib.rs +388 -0
- iamai-0.2.3/tests/test_adapter_conformance.py +77 -0
- iamai-0.2.3/tests/test_adapter_middleware.py +223 -0
- iamai-0.2.3/tests/test_agent_tools.py +76 -0
- iamai-0.2.3/tests/test_docs_content.py +59 -0
- iamai-0.2.3/tests/test_docs_extensions.py +68 -0
- iamai-0.2.3/tests/test_docs_i18n_versions.py +37 -0
- iamai-0.2.3/tests/test_echo_runtime_management.py +52 -0
- iamai-0.2.3/tests/test_ecosystem_store.py +190 -0
- iamai-0.2.3/tests/test_example_llm.py +39 -0
- iamai-0.2.3/tests/test_logging_config.py +88 -0
- iamai-0.2.3/tests/test_management_api.py +67 -0
- iamai-0.2.3/tests/test_package_discovery.py +194 -0
- iamai-0.2.3/tests/test_rules_engine.py +160 -0
- iamai-0.2.3/tests/test_runtime_introspection.py +108 -0
- iamai-0.2.3/tests/test_runtime_safety.py +552 -0
- iamai-0.2.3/tests/test_telegram_adapter.py +120 -0
- iamai-0.2.2a1.dev2/.github/FUNDING.yml +0 -13
- iamai-0.2.2a1.dev2/.github/actions/setup-node/action.yml +0 -21
- iamai-0.2.2a1.dev2/.github/actions/setup-python/action.yml +0 -25
- iamai-0.2.2a1.dev2/.github/config.yml +0 -7
- iamai-0.2.2a1.dev2/.github/copilot-instructions.md +0 -7
- iamai-0.2.2a1.dev2/.github/dependabot.yml +0 -19
- iamai-0.2.2a1.dev2/.github/workflows/build-api.yml +0 -63
- iamai-0.2.2a1.dev2/.github/workflows/dependency-review.yml +0 -20
- iamai-0.2.2a1.dev2/.github/workflows/nightly.yml +0 -64
- iamai-0.2.2a1.dev2/.github/workflows/publish-docker.yml +0 -59
- iamai-0.2.2a1.dev2/.gitignore +0 -166
- iamai-0.2.2a1.dev2/.gitpod.yml +0 -10
- iamai-0.2.2a1.dev2/.pre-commit-config.yaml +0 -20
- iamai-0.2.2a1.dev2/.readthedocs.yaml +0 -32
- iamai-0.2.2a1.dev2/.sourcery.yaml +0 -74
- iamai-0.2.2a1.dev2/.vscode/launch.json +0 -33
- iamai-0.2.2a1.dev2/CHANGELOG.md +0 -252
- iamai-0.2.2a1.dev2/CITATION.cff +0 -22
- iamai-0.2.2a1.dev2/CODE_OF_CONDUCT.md +0 -128
- iamai-0.2.2a1.dev2/COPYING +0 -661
- iamai-0.2.2a1.dev2/Cargo.lock +0 -1347
- iamai-0.2.2a1.dev2/Cargo.toml +0 -31
- iamai-0.2.2a1.dev2/Dockerfile +0 -18
- iamai-0.2.2a1.dev2/MANIFEST.in +0 -2
- iamai-0.2.2a1.dev2/Makefile +0 -53
- iamai-0.2.2a1.dev2/PKG-INFO +0 -481
- iamai-0.2.2a1.dev2/README.md +0 -435
- iamai-0.2.2a1.dev2/docs/Makefile +0 -41
- iamai-0.2.2a1.dev2/docs/_static/assets/blog-theme.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/card-1.dark.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/card-1.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/credits.pdf +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/docs/banner.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/docs/custom-theme.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/docs/how-it-works.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/docs/logo.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/docs/menu.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/docs/navigation.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/docs/project-link.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/docs/sidebar-customized.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/docs/sub-docs.mp4 +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/docs/title-suffix.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/docs-theme.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/gradient-bg.jpeg +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/high-contrast.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/routing.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/routing@1x.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/search-dark.mp4 +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/search.mp4 +0 -0
- iamai-0.2.2a1.dev2/docs/_static/assets/syntax-highlighting.svg +0 -1
- iamai-0.2.2a1.dev2/docs/_static/demo.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/favicon-dark.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/favicon-dark.svg +0 -39
- iamai-0.2.2a1.dev2/docs/_static/favicon.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/favicon.svg +0 -39
- iamai-0.2.2a1.dev2/docs/_static/icons/android-chrome-192x192.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/icons/android-chrome-512x512.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/icons/apple-touch-icon.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/icons/favicon-16x16.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/icons/favicon-32x32.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/icons/favicon.ico +0 -0
- iamai-0.2.2a1.dev2/docs/_static/icons/logo.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/icons/mstile-150x150.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/icons/retroOG-ICON4.svg +0 -1
- iamai-0.2.2a1.dev2/docs/_static/icons/retro_plus.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/icons/safari-pinned-tab.svg +0 -94
- iamai-0.2.2a1.dev2/docs/_static/icons/site.webmanifest +0 -1
- iamai-0.2.2a1.dev2/docs/_static/kook-structures.drawio +0 -42
- iamai-0.2.2a1.dev2/docs/_static/logo.png +0 -0
- iamai-0.2.2a1.dev2/docs/_static/logo.svg +0 -1
- iamai-0.2.2a1.dev2/docs/_static/manifest.json +0 -20
- iamai-0.2.2a1.dev2/docs/_static/og.jpeg +0 -0
- iamai-0.2.2a1.dev2/docs/_static/retro.png +0 -0
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/COPYING.po +0 -61
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/changelog.po +0 -631
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/credits.po +0 -1726
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/index.po +0 -148
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/adapters/cqhttp-adapter.po +0 -165
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/adapters/dingtalk-adapter.po +0 -118
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/adapters/mirai-adapter.po +0 -129
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/advanced/hook-function.po +0 -95
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/advanced/hot-reload.po +0 -109
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/advanced/plugin-advanced.po +0 -93
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/advanced/scheduler.po +0 -204
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.apscheduler.config.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.apscheduler.event.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.apscheduler.po +0 -36
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.bililive.config.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.bililive.event.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.bililive.exceptions.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.bililive.message.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.bililive.po +0 -36
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.bililive.tests.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.console.config.po +0 -50
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.console.event.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.console.message.po +0 -67
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.console.po +0 -36
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.cqhttp.config.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.cqhttp.event.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.cqhttp.exceptions.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.cqhttp.message.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.cqhttp.po +0 -36
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.dingtalk.config.po +0 -74
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.dingtalk.event.po +0 -104
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.dingtalk.exceptions.po +0 -44
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.dingtalk.message.po +0 -95
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.dingtalk.po +0 -159
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.gensokyo.config.po +0 -83
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.gensokyo.event.po +0 -205
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.gensokyo.exceptions.po +0 -53
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.gensokyo.message.po +0 -167
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.gensokyo.po +0 -213
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.kook.api.client.po +0 -29
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.kook.api.handle.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.kook.api.model.po +0 -482
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.kook.api.po +0 -36
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.kook.config.po +0 -86
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.kook.event.po +0 -572
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.kook.exceptions.po +0 -65
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.kook.message.po +0 -79
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.kook.po +0 -161
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.onebot11.config.po +0 -110
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.onebot11.event.po +0 -498
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.onebot11.exceptions.po +0 -73
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.onebot11.message.po +0 -258
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.onebot11.po +0 -301
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.po +0 -130
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.red.config.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.red.event.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.red.po +0 -36
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.adapter.utils.po +0 -98
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.bot.po +0 -252
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.cli.po +0 -25
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.config.po +0 -112
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.const.po +0 -25
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.dependencies.po +0 -50
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.event.po +0 -141
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.exceptions.po +0 -68
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.libcore.po +0 -25
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.log.po +0 -34
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.message.po +0 -231
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.models.BM25.config.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.models.BM25.po +0 -39
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.models.po +0 -33
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.plugin.po +0 -106
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.po +0 -499
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.typing.po +0 -31
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/iamai.utils.po +0 -223
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/api/index.po +0 -25
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/basic/basic-config.po +0 -140
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/basic/builtin-message.po +0 -134
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/basic/plugin-basics.po +0 -321
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/blog/iamai-v3.po +0 -37
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/blog/index.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/community/assets-library.po +0 -26
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/credits.po +0 -1307
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/development/contributing.po +0 -29
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/introduction.po +0 -95
- iamai-0.2.2a1.dev2/docs/locales/zh_CN/LC_MESSAGES/pages/starting/getting-started.po +0 -278
- iamai-0.2.2a1.dev2/docs/requirements.txt +0 -9
- iamai-0.2.2a1.dev2/docs/source/COPYING.rst +0 -6
- iamai-0.2.2a1.dev2/docs/source/changelog.md +0 -2
- iamai-0.2.2a1.dev2/docs/source/conf.py +0 -119
- iamai-0.2.2a1.dev2/docs/source/credits.md +0 -4585
- iamai-0.2.2a1.dev2/docs/source/index.rst +0 -62
- iamai-0.2.2a1.dev2/docs/source/pages/adapters/cqhttp-adapter.md +0 -112
- iamai-0.2.2a1.dev2/docs/source/pages/adapters/dingtalk-adapter.md +0 -48
- iamai-0.2.2a1.dev2/docs/source/pages/adapters/mirai-adapter.md +0 -136
- iamai-0.2.2a1.dev2/docs/source/pages/advanced/hook-function.md +0 -92
- iamai-0.2.2a1.dev2/docs/source/pages/advanced/hot-reload.md +0 -55
- iamai-0.2.2a1.dev2/docs/source/pages/advanced/plugin-advanced.md +0 -37
- iamai-0.2.2a1.dev2/docs/source/pages/advanced/scheduler.md +0 -247
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.apscheduler.config.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.apscheduler.event.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.apscheduler.rst +0 -19
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.bililive.config.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.bililive.event.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.bililive.exceptions.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.bililive.message.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.bililive.rst +0 -22
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.bililive.tests.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.console.config.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.console.event.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.console.message.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.console.rst +0 -20
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.cqhttp.config.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.cqhttp.event.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.cqhttp.exceptions.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.cqhttp.message.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.cqhttp.rst +0 -21
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.dingtalk.config.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.dingtalk.event.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.dingtalk.exceptions.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.dingtalk.message.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.dingtalk.rst +0 -21
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.gensokyo.config.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.gensokyo.event.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.gensokyo.exceptions.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.gensokyo.message.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.gensokyo.rst +0 -21
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.kook.api.client.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.kook.api.handle.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.kook.api.model.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.kook.api.rst +0 -20
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.kook.config.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.kook.event.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.kook.exceptions.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.kook.message.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.kook.rst +0 -29
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.red.config.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.red.event.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.red.rst +0 -19
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.rst +0 -33
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.adapter.utils.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.bot.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.cli.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.config.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.const.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.dependencies.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.event.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.exceptions.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.i18n.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.log.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.message.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.model.BM25.config.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.model.BM25.rst +0 -18
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.model.rst +0 -18
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.plugin.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.rst +0 -39
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.typing.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/iamai.utils.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/api/index.rst +0 -7
- iamai-0.2.2a1.dev2/docs/source/pages/basic/basic-config.md +0 -115
- iamai-0.2.2a1.dev2/docs/source/pages/basic/builtin-message.md +0 -96
- iamai-0.2.2a1.dev2/docs/source/pages/basic/plugin-basics.md +0 -241
- iamai-0.2.2a1.dev2/docs/source/pages/blog/iamai-v3.rst +0 -10
- iamai-0.2.2a1.dev2/docs/source/pages/blog/index.rst +0 -2
- iamai-0.2.2a1.dev2/docs/source/pages/community/assets-library.rst +0 -2
- iamai-0.2.2a1.dev2/docs/source/pages/dev-api/.gitkeep +0 -0
- iamai-0.2.2a1.dev2/docs/source/pages/development/contributing.rst +0 -1
- iamai-0.2.2a1.dev2/docs/source/pages/starting/getting-started.rst +0 -128
- iamai-0.2.2a1.dev2/examples/basic_example/config.toml +0 -21
- iamai-0.2.2a1.dev2/examples/basic_example/main.py +0 -105
- iamai-0.2.2a1.dev2/examples/basic_example/plugins/__init__.py +0 -1
- iamai-0.2.2a1.dev2/examples/bottle_example/config.toml +0 -25
- iamai-0.2.2a1.dev2/examples/bottle_example/main.py +0 -77
- iamai-0.2.2a1.dev2/examples/bottle_example/plugins/__init__.py +0 -1
- iamai-0.2.2a1.dev2/examples/bottle_example/plugins/bottle.py +0 -64
- iamai-0.2.2a1.dev2/noxfile.py +0 -17
- iamai-0.2.2a1.dev2/pyproject.toml +0 -174
- iamai-0.2.2a1.dev2/src/iamai/__init__.py +0 -56
- iamai-0.2.2a1.dev2/src/iamai/bot.py +0 -324
- iamai-0.2.2a1.dev2/src/iamai/config.py +0 -189
- iamai-0.2.2a1.dev2/src/iamai/event.py +0 -100
- iamai-0.2.2a1.dev2/src/iamai/logger.py +0 -51
- iamai-0.2.2a1.dev2/src/iamai/message.py +0 -162
- iamai-0.2.2a1.dev2/src/iamai/middleware/__init__.py +0 -134
- iamai-0.2.2a1.dev2/src/iamai/middleware/console.py +0 -207
- iamai-0.2.2a1.dev2/src/iamai/middleware/websockets.py +0 -218
- iamai-0.2.2a1.dev2/src/iamai/plugin.py +0 -242
- iamai-0.2.2a1.dev2/src/iamai/rule.py +0 -264
- iamai-0.2.2a1.dev2/src/iamai/typing.py +0 -120
- iamai-0.2.2a1.dev2/src/lib.rs +0 -68
- iamai-0.2.2a1.dev2/tests/test_minimal.py +0 -82
- iamai-0.2.2a1.dev2/tests/test_textual_ui.py +0 -124
- iamai-0.2.2a1.dev2/uv.lock +0 -2224
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
name: Ecosystem submission
|
|
2
|
+
description: Publish a FerriBot plugin, adapter, ruleset, tool, template, or other ecosystem entry.
|
|
3
|
+
title: "[Ecosystem] "
|
|
4
|
+
labels:
|
|
5
|
+
- ecosystem-submission
|
|
6
|
+
- triage
|
|
7
|
+
body:
|
|
8
|
+
- type: markdown
|
|
9
|
+
attributes:
|
|
10
|
+
value: |
|
|
11
|
+
Thanks for publishing a FerriBot ecosystem entry. Maintainers will validate the package or repository before adding it to the public registry.
|
|
12
|
+
- type: dropdown
|
|
13
|
+
id: extension_type
|
|
14
|
+
attributes:
|
|
15
|
+
label: Extension type
|
|
16
|
+
options:
|
|
17
|
+
- plugin
|
|
18
|
+
- adapter
|
|
19
|
+
- ruleset
|
|
20
|
+
- permission
|
|
21
|
+
- state_backend
|
|
22
|
+
- agent_tool
|
|
23
|
+
- agent_skill
|
|
24
|
+
- middleware
|
|
25
|
+
- template
|
|
26
|
+
- example
|
|
27
|
+
- provider
|
|
28
|
+
- theme
|
|
29
|
+
validations:
|
|
30
|
+
required: true
|
|
31
|
+
- type: input
|
|
32
|
+
id: entry_id
|
|
33
|
+
attributes:
|
|
34
|
+
label: Registry entry id
|
|
35
|
+
description: Use a stable lowercase id such as plugin.echo or adapter.acme.
|
|
36
|
+
placeholder: plugin.echo
|
|
37
|
+
validations:
|
|
38
|
+
required: true
|
|
39
|
+
- type: input
|
|
40
|
+
id: display_name
|
|
41
|
+
attributes:
|
|
42
|
+
label: Display name
|
|
43
|
+
placeholder: Echo Plugin
|
|
44
|
+
validations:
|
|
45
|
+
required: true
|
|
46
|
+
- type: textarea
|
|
47
|
+
id: summary
|
|
48
|
+
attributes:
|
|
49
|
+
label: Summary
|
|
50
|
+
description: One sentence, 180 characters or fewer.
|
|
51
|
+
placeholder: Echo command plugin for local testing.
|
|
52
|
+
validations:
|
|
53
|
+
required: true
|
|
54
|
+
- type: input
|
|
55
|
+
id: package_name
|
|
56
|
+
attributes:
|
|
57
|
+
label: Python package
|
|
58
|
+
description: Required unless this entry is repository-only.
|
|
59
|
+
placeholder: ferribot-plugin-echo
|
|
60
|
+
- type: input
|
|
61
|
+
id: repository_url
|
|
62
|
+
attributes:
|
|
63
|
+
label: Repository URL
|
|
64
|
+
description: Required unless this entry is package-only.
|
|
65
|
+
placeholder: https://github.com/you/ferribot-plugin-echo
|
|
66
|
+
- type: textarea
|
|
67
|
+
id: runtime_capabilities
|
|
68
|
+
attributes:
|
|
69
|
+
label: Runtime capabilities
|
|
70
|
+
description: Comma or newline separated capabilities such as network:http, storage:sqlite, agent:tool, approval:required.
|
|
71
|
+
placeholder: network:http, storage:sqlite
|
|
72
|
+
- type: textarea
|
|
73
|
+
id: security_notes
|
|
74
|
+
attributes:
|
|
75
|
+
label: Security statement
|
|
76
|
+
description: Declare network access, credentials, dangerous actions, optional dependencies, or review notes.
|
|
77
|
+
placeholder: Requires outbound HTTPS and an API token stored in adapter config.
|
|
78
|
+
- type: textarea
|
|
79
|
+
id: permission_notes
|
|
80
|
+
attributes:
|
|
81
|
+
label: Permission notes
|
|
82
|
+
description: For Agent tools, declare permission name, input schema, audit fields, and whether human approval is required.
|
|
83
|
+
placeholder: permission=web.search; audit_fields=query,provider; approval=false
|
|
84
|
+
- type: textarea
|
|
85
|
+
id: registry_json
|
|
86
|
+
attributes:
|
|
87
|
+
label: Candidate registry JSON
|
|
88
|
+
description: Paste or keep the JSON generated by the documentation submission form.
|
|
89
|
+
render: json
|
|
90
|
+
validations:
|
|
91
|
+
required: true
|
|
92
|
+
- type: checkboxes
|
|
93
|
+
id: confirmations
|
|
94
|
+
attributes:
|
|
95
|
+
label: Confirmations
|
|
96
|
+
options:
|
|
97
|
+
- label: The package or repository is public and reachable.
|
|
98
|
+
required: true
|
|
99
|
+
- label: This submission contains no secrets, private endpoints, or unsafe install steps.
|
|
100
|
+
required: true
|
|
101
|
+
- label: I declared network access, credential needs, dangerous actions, and Agent tool permissions where applicable.
|
|
102
|
+
required: true
|
|
103
|
+
- label: I understand verification badges are assigned by FerriBot maintainers after review.
|
|
104
|
+
required: true
|
|
@@ -1,19 +1,16 @@
|
|
|
1
|
+
---
|
|
1
2
|
name: Generate Changelog
|
|
2
|
-
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
|
-
tags:
|
|
6
|
-
-
|
|
5
|
+
tags:
|
|
6
|
+
- v*
|
|
7
7
|
# - v[0-9]+.[0-9]+.[0-9]+
|
|
8
|
-
|
|
9
8
|
jobs:
|
|
10
9
|
deploy:
|
|
11
10
|
runs-on: ubuntu-latest
|
|
12
|
-
|
|
13
11
|
steps:
|
|
14
12
|
- name: Checkout Code
|
|
15
13
|
uses: actions/checkout@v3
|
|
16
|
-
|
|
17
14
|
- name: Update CHANGELOG
|
|
18
15
|
id: changelog
|
|
19
16
|
uses: requarks/changelog-action@v1
|
|
@@ -24,7 +21,6 @@ jobs:
|
|
|
24
21
|
changelogFilePath: CHANGELOG.md
|
|
25
22
|
writeToFile: true
|
|
26
23
|
useGitmojis: false
|
|
27
|
-
|
|
28
24
|
- name: Create Release
|
|
29
25
|
uses: ncipollo/release-action@v1.16.0
|
|
30
26
|
with:
|
|
@@ -34,7 +30,6 @@ jobs:
|
|
|
34
30
|
name: ${{ github.ref_name }}
|
|
35
31
|
body: ${{ steps.changelog.outputs.changes }}
|
|
36
32
|
token: ${{ github.token }}
|
|
37
|
-
|
|
38
33
|
- name: Commit CHANGELOG.md
|
|
39
34
|
uses: stefanzweifel/git-auto-commit-action@v5
|
|
40
35
|
with:
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
|
|
10
|
+
concurrency:
|
|
11
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
12
|
+
cancel-in-progress: true
|
|
13
|
+
|
|
14
|
+
permissions:
|
|
15
|
+
contents: read
|
|
16
|
+
|
|
17
|
+
jobs:
|
|
18
|
+
lint-and-rust:
|
|
19
|
+
name: Lint / Rust / Config
|
|
20
|
+
runs-on: ubuntu-24.04
|
|
21
|
+
steps:
|
|
22
|
+
- name: Check out repository
|
|
23
|
+
uses: actions/checkout@v6
|
|
24
|
+
|
|
25
|
+
- name: Set up Python
|
|
26
|
+
uses: actions/setup-python@v6
|
|
27
|
+
with:
|
|
28
|
+
python-version: "3.12"
|
|
29
|
+
|
|
30
|
+
- name: Set up uv
|
|
31
|
+
uses: astral-sh/setup-uv@v8
|
|
32
|
+
with:
|
|
33
|
+
enable-cache: true
|
|
34
|
+
cache-local-path: .uv-cache
|
|
35
|
+
|
|
36
|
+
- name: Set up Rust
|
|
37
|
+
uses: dtolnay/rust-toolchain@stable
|
|
38
|
+
|
|
39
|
+
- name: Sync development dependencies
|
|
40
|
+
run: uv sync --locked --group dev
|
|
41
|
+
|
|
42
|
+
- name: Run Ruff
|
|
43
|
+
run: uv run ruff check .
|
|
44
|
+
|
|
45
|
+
- name: Run Rust tests
|
|
46
|
+
run: cargo test
|
|
47
|
+
|
|
48
|
+
- name: Validate example configs
|
|
49
|
+
run: bash scripts/check_example_configs.sh
|
|
50
|
+
|
|
51
|
+
test:
|
|
52
|
+
name: Pytest (Python ${{ matrix.python-version }})
|
|
53
|
+
runs-on: ubuntu-24.04
|
|
54
|
+
strategy:
|
|
55
|
+
fail-fast: false
|
|
56
|
+
matrix:
|
|
57
|
+
python-version: ["3.10", "3.12"]
|
|
58
|
+
steps:
|
|
59
|
+
- name: Check out repository
|
|
60
|
+
uses: actions/checkout@v6
|
|
61
|
+
|
|
62
|
+
- name: Set up Python
|
|
63
|
+
uses: actions/setup-python@v6
|
|
64
|
+
with:
|
|
65
|
+
python-version: ${{ matrix.python-version }}
|
|
66
|
+
|
|
67
|
+
- name: Set up uv
|
|
68
|
+
uses: astral-sh/setup-uv@v8
|
|
69
|
+
with:
|
|
70
|
+
enable-cache: true
|
|
71
|
+
cache-local-path: .uv-cache
|
|
72
|
+
|
|
73
|
+
- name: Set up Rust
|
|
74
|
+
uses: dtolnay/rust-toolchain@stable
|
|
75
|
+
|
|
76
|
+
- name: Sync development dependencies
|
|
77
|
+
run: uv sync --locked --group dev
|
|
78
|
+
|
|
79
|
+
- name: Run pytest
|
|
80
|
+
run: uv run pytest
|
|
81
|
+
|
|
82
|
+
docs:
|
|
83
|
+
name: Docs
|
|
84
|
+
runs-on: ubuntu-24.04
|
|
85
|
+
steps:
|
|
86
|
+
- name: Check out repository
|
|
87
|
+
uses: actions/checkout@v6
|
|
88
|
+
|
|
89
|
+
- name: Set up Python
|
|
90
|
+
uses: actions/setup-python@v6
|
|
91
|
+
with:
|
|
92
|
+
python-version: "3.12"
|
|
93
|
+
|
|
94
|
+
- name: Set up uv
|
|
95
|
+
uses: astral-sh/setup-uv@v8
|
|
96
|
+
with:
|
|
97
|
+
enable-cache: true
|
|
98
|
+
cache-local-path: .uv-cache
|
|
99
|
+
|
|
100
|
+
- name: Set up Rust
|
|
101
|
+
uses: dtolnay/rust-toolchain@stable
|
|
102
|
+
|
|
103
|
+
- name: Sync documentation dependencies
|
|
104
|
+
run: uv sync --locked --group dev --group docs
|
|
105
|
+
|
|
106
|
+
- name: Build Sphinx docs
|
|
107
|
+
run: uv run sphinx-build -W --keep-going -b html docs docs/_build/html
|
|
@@ -1,23 +1,18 @@
|
|
|
1
|
-
|
|
1
|
+
---
|
|
2
|
+
# This file is autogenerated by maturin v1.13.1
|
|
2
3
|
# To update, run
|
|
3
4
|
#
|
|
4
|
-
# maturin generate-ci github
|
|
5
|
+
# maturin generate-ci github -o CI.yml
|
|
5
6
|
#
|
|
6
|
-
name:
|
|
7
|
-
|
|
7
|
+
name: release
|
|
8
8
|
on:
|
|
9
9
|
push:
|
|
10
|
-
branches:
|
|
11
|
-
|
|
12
|
-
- master
|
|
13
|
-
tags:
|
|
14
|
-
- '*'
|
|
10
|
+
branches: [main, master]
|
|
11
|
+
tags: ['*']
|
|
15
12
|
pull_request:
|
|
16
13
|
workflow_dispatch:
|
|
17
|
-
|
|
18
14
|
permissions:
|
|
19
15
|
contents: read
|
|
20
|
-
|
|
21
16
|
jobs:
|
|
22
17
|
linux:
|
|
23
18
|
runs-on: ${{ matrix.platform.runner }}
|
|
@@ -37,30 +32,22 @@ jobs:
|
|
|
37
32
|
- runner: ubuntu-22.04
|
|
38
33
|
target: ppc64le
|
|
39
34
|
steps:
|
|
40
|
-
- uses: actions/checkout@
|
|
41
|
-
- uses: actions/setup-python@
|
|
35
|
+
- uses: actions/checkout@v6
|
|
36
|
+
- uses: actions/setup-python@v6
|
|
42
37
|
with:
|
|
43
|
-
python-version: 3.
|
|
38
|
+
python-version: 3.10
|
|
44
39
|
- name: Build wheels
|
|
45
40
|
uses: PyO3/maturin-action@v1
|
|
46
41
|
with:
|
|
47
42
|
target: ${{ matrix.platform.target }}
|
|
48
|
-
args: --release --out dist
|
|
49
|
-
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
50
|
-
manylinux: auto
|
|
51
|
-
- name: Build free-threaded wheels
|
|
52
|
-
uses: PyO3/maturin-action@v1
|
|
53
|
-
with:
|
|
54
|
-
target: ${{ matrix.platform.target }}
|
|
55
|
-
args: --release --out dist -i python3.13t
|
|
43
|
+
args: --release --out dist --find-interpreter
|
|
56
44
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
57
45
|
manylinux: auto
|
|
58
46
|
- name: Upload wheels
|
|
59
|
-
uses: actions/upload-artifact@
|
|
47
|
+
uses: actions/upload-artifact@v6
|
|
60
48
|
with:
|
|
61
49
|
name: wheels-linux-${{ matrix.platform.target }}
|
|
62
50
|
path: dist
|
|
63
|
-
|
|
64
51
|
musllinux:
|
|
65
52
|
runs-on: ${{ matrix.platform.runner }}
|
|
66
53
|
strategy:
|
|
@@ -75,30 +62,22 @@ jobs:
|
|
|
75
62
|
- runner: ubuntu-22.04
|
|
76
63
|
target: armv7
|
|
77
64
|
steps:
|
|
78
|
-
- uses: actions/checkout@
|
|
79
|
-
- uses: actions/setup-python@
|
|
65
|
+
- uses: actions/checkout@v6
|
|
66
|
+
- uses: actions/setup-python@v6
|
|
80
67
|
with:
|
|
81
|
-
python-version: 3.
|
|
68
|
+
python-version: 3.10
|
|
82
69
|
- name: Build wheels
|
|
83
70
|
uses: PyO3/maturin-action@v1
|
|
84
71
|
with:
|
|
85
72
|
target: ${{ matrix.platform.target }}
|
|
86
|
-
args: --release --out dist
|
|
87
|
-
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
88
|
-
manylinux: musllinux_1_2
|
|
89
|
-
- name: Build free-threaded wheels
|
|
90
|
-
uses: PyO3/maturin-action@v1
|
|
91
|
-
with:
|
|
92
|
-
target: ${{ matrix.platform.target }}
|
|
93
|
-
args: --release --out dist -i python3.13t
|
|
73
|
+
args: --release --out dist --find-interpreter
|
|
94
74
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
95
75
|
manylinux: musllinux_1_2
|
|
96
76
|
- name: Upload wheels
|
|
97
|
-
uses: actions/upload-artifact@
|
|
77
|
+
uses: actions/upload-artifact@v6
|
|
98
78
|
with:
|
|
99
79
|
name: wheels-musllinux-${{ matrix.platform.target }}
|
|
100
80
|
path: dist
|
|
101
|
-
|
|
102
81
|
windows:
|
|
103
82
|
runs-on: ${{ matrix.platform.runner }}
|
|
104
83
|
strategy:
|
|
@@ -106,83 +85,74 @@ jobs:
|
|
|
106
85
|
platform:
|
|
107
86
|
- runner: windows-latest
|
|
108
87
|
target: x64
|
|
88
|
+
python_arch: x64
|
|
109
89
|
- runner: windows-latest
|
|
110
90
|
target: x86
|
|
91
|
+
python_arch: x86
|
|
92
|
+
- runner: windows-11-arm
|
|
93
|
+
target: aarch64
|
|
94
|
+
python_arch: arm64
|
|
111
95
|
steps:
|
|
112
|
-
- uses: actions/checkout@
|
|
113
|
-
- uses: actions/setup-python@
|
|
96
|
+
- uses: actions/checkout@v6
|
|
97
|
+
- uses: actions/setup-python@v6
|
|
114
98
|
with:
|
|
115
|
-
python-version: 3.
|
|
116
|
-
architecture: ${{ matrix.platform.
|
|
99
|
+
python-version: 3.13
|
|
100
|
+
architecture: ${{ matrix.platform.python_arch }}
|
|
117
101
|
- name: Build wheels
|
|
118
102
|
uses: PyO3/maturin-action@v1
|
|
119
103
|
with:
|
|
120
104
|
target: ${{ matrix.platform.target }}
|
|
121
|
-
args: --release --out dist
|
|
122
|
-
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
123
|
-
- name: Build free-threaded wheels
|
|
124
|
-
uses: PyO3/maturin-action@v1
|
|
125
|
-
with:
|
|
126
|
-
target: ${{ matrix.platform.target }}
|
|
127
|
-
args: --release --out dist -i python3.11
|
|
105
|
+
args: --release --out dist --find-interpreter
|
|
128
106
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
129
107
|
- name: Upload wheels
|
|
130
|
-
uses: actions/upload-artifact@
|
|
108
|
+
uses: actions/upload-artifact@v6
|
|
131
109
|
with:
|
|
132
110
|
name: wheels-windows-${{ matrix.platform.target }}
|
|
133
111
|
path: dist
|
|
134
|
-
|
|
135
112
|
macos:
|
|
136
113
|
runs-on: ${{ matrix.platform.runner }}
|
|
137
114
|
strategy:
|
|
138
115
|
matrix:
|
|
139
116
|
platform:
|
|
140
|
-
- runner: macos-
|
|
117
|
+
- runner: macos-15-intel
|
|
141
118
|
target: x86_64
|
|
142
|
-
- runner: macos-
|
|
119
|
+
- runner: macos-latest
|
|
143
120
|
target: aarch64
|
|
144
121
|
steps:
|
|
145
|
-
- uses: actions/checkout@
|
|
146
|
-
- uses: actions/setup-python@
|
|
122
|
+
- uses: actions/checkout@v6
|
|
123
|
+
- uses: actions/setup-python@v6
|
|
147
124
|
with:
|
|
148
|
-
python-version: 3.
|
|
125
|
+
python-version: 3.10
|
|
149
126
|
- name: Build wheels
|
|
150
127
|
uses: PyO3/maturin-action@v1
|
|
151
128
|
with:
|
|
152
129
|
target: ${{ matrix.platform.target }}
|
|
153
|
-
args: --release --out dist
|
|
154
|
-
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
155
|
-
- name: Build free-threaded wheels
|
|
156
|
-
uses: PyO3/maturin-action@v1
|
|
157
|
-
with:
|
|
158
|
-
target: ${{ matrix.platform.target }}
|
|
159
|
-
args: --release --out dist -i python3.13t
|
|
130
|
+
args: --release --out dist --find-interpreter
|
|
160
131
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
161
132
|
- name: Upload wheels
|
|
162
|
-
uses: actions/upload-artifact@
|
|
133
|
+
uses: actions/upload-artifact@v6
|
|
163
134
|
with:
|
|
164
135
|
name: wheels-macos-${{ matrix.platform.target }}
|
|
165
136
|
path: dist
|
|
166
|
-
|
|
167
137
|
sdist:
|
|
168
138
|
runs-on: ubuntu-latest
|
|
169
139
|
steps:
|
|
170
|
-
- uses: actions/checkout@
|
|
140
|
+
- uses: actions/checkout@v6
|
|
171
141
|
- name: Build sdist
|
|
172
142
|
uses: PyO3/maturin-action@v1
|
|
173
143
|
with:
|
|
174
144
|
command: sdist
|
|
175
145
|
args: --out dist
|
|
176
146
|
- name: Upload sdist
|
|
177
|
-
uses: actions/upload-artifact@
|
|
147
|
+
uses: actions/upload-artifact@v6
|
|
178
148
|
with:
|
|
179
149
|
name: wheels-sdist
|
|
180
150
|
path: dist
|
|
181
|
-
|
|
182
151
|
release:
|
|
183
152
|
name: Release
|
|
184
153
|
runs-on: ubuntu-latest
|
|
185
|
-
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name ==
|
|
154
|
+
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name ==
|
|
155
|
+
'workflow_dispatch' }}
|
|
186
156
|
needs: [linux, musllinux, windows, macos, sdist]
|
|
187
157
|
permissions:
|
|
188
158
|
# Use to sign the release artifacts
|
|
@@ -192,16 +162,16 @@ jobs:
|
|
|
192
162
|
# Used to generate artifact attestation
|
|
193
163
|
attestations: write
|
|
194
164
|
steps:
|
|
195
|
-
- uses: actions/download-artifact@
|
|
165
|
+
- uses: actions/download-artifact@v7
|
|
196
166
|
- name: Generate artifact attestation
|
|
197
|
-
uses: actions/attest-build-provenance@
|
|
167
|
+
uses: actions/attest-build-provenance@v3
|
|
198
168
|
with:
|
|
199
|
-
subject-path:
|
|
169
|
+
subject-path: wheels-*/*
|
|
170
|
+
- name: Install uv
|
|
171
|
+
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
172
|
+
uses: astral-sh/setup-uv@v7
|
|
200
173
|
- name: Publish to PyPI
|
|
201
174
|
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
202
|
-
|
|
175
|
+
run: uv publish 'wheels-*/*'
|
|
203
176
|
env:
|
|
204
|
-
|
|
205
|
-
with:
|
|
206
|
-
command: upload
|
|
207
|
-
args: --non-interactive --skip-existing wheels-*/*
|
|
177
|
+
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
iamai-0.2.3/.gitignore
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
.venv
|
|
2
|
+
.env
|
|
3
|
+
**/.env
|
|
4
|
+
__pycache__/
|
|
5
|
+
*.pyc
|
|
6
|
+
.DS_Store
|
|
7
|
+
target/
|
|
8
|
+
dist/
|
|
9
|
+
build/
|
|
10
|
+
*.so
|
|
11
|
+
*.pyd
|
|
12
|
+
*.egg-info/
|
|
13
|
+
.pytest_cache/
|
|
14
|
+
.ruff_cache/
|
|
15
|
+
.ferribot/
|
|
16
|
+
**/.ferribot/
|
|
17
|
+
docs/_build/
|
|
18
|
+
docs/api/generated/
|
|
19
|
+
.DS_Store
|
|
20
|
+
*.log
|
|
21
|
+
uv.lock
|