agentbundle 0.2.0__py3-none-any.whl
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.
- agentbundle/__init__.py +14 -0
- agentbundle/__main__.py +5 -0
- agentbundle/_data/adapter.schema.json +270 -0
- agentbundle/_data/adapter.toml +584 -0
- agentbundle/_data/install-marker.py +1099 -0
- agentbundle/_data/pack.schema.json +152 -0
- agentbundle/_data/plugin-manifest.derived.schema.json +33 -0
- agentbundle/_data/plugin-manifest.schema.json +18 -0
- agentbundle/build/__init__.py +206 -0
- agentbundle/build/__main__.py +8 -0
- agentbundle/build/adapter_root_bins.py +336 -0
- agentbundle/build/adapters/__init__.py +46 -0
- agentbundle/build/adapters/claude_code.py +142 -0
- agentbundle/build/adapters/codex.py +227 -0
- agentbundle/build/adapters/copilot.py +149 -0
- agentbundle/build/adapters/kiro.py +608 -0
- agentbundle/build/adapters/kiro_cli.py +53 -0
- agentbundle/build/adapters/kiro_ide.py +275 -0
- agentbundle/build/contract.py +20 -0
- agentbundle/build/lint_packs.py +555 -0
- agentbundle/build/main.py +596 -0
- agentbundle/build/phase_order.py +40 -0
- agentbundle/build/projections/__init__.py +13 -0
- agentbundle/build/projections/codex_agent_toml.py +232 -0
- agentbundle/build/projections/copilot_agent_md.py +206 -0
- agentbundle/build/projections/copilot_hooks_json.py +142 -0
- agentbundle/build/projections/direct_directory.py +41 -0
- agentbundle/build/projections/hook_id.py +27 -0
- agentbundle/build/projections/kiro_ide_hook.py +256 -0
- agentbundle/build/projections/merge_into_agent_json.py +264 -0
- agentbundle/build/projections/merge_json.py +58 -0
- agentbundle/build/projections/user_merge_json.py +324 -0
- agentbundle/build/scope_rails.py +728 -0
- agentbundle/build/self_host.py +1486 -0
- agentbundle/build/shared_libs.py +309 -0
- agentbundle/build/target_resolver.py +85 -0
- agentbundle/build/tests/__init__.py +0 -0
- agentbundle/build/tests/test_adapter_claude_code.py +275 -0
- agentbundle/build/tests/test_adapter_codex.py +699 -0
- agentbundle/build/tests/test_adapter_copilot.py +91 -0
- agentbundle/build/tests/test_adapter_kiro.py +449 -0
- agentbundle/build/tests/test_adapter_kiro_alias.py +105 -0
- agentbundle/build/tests/test_adapter_kiro_cli.py +102 -0
- agentbundle/build/tests/test_adapter_kiro_ide.py +173 -0
- agentbundle/build/tests/test_adapter_root_bins_projection.py +429 -0
- agentbundle/build/tests/test_build_ships_seeds.py +78 -0
- agentbundle/build/tests/test_contract.py +582 -0
- agentbundle/build/tests/test_contract_scope.py +224 -0
- agentbundle/build/tests/test_contract_v07.py +191 -0
- agentbundle/build/tests/test_contract_v08.py +230 -0
- agentbundle/build/tests/test_direct_directory_cleanup.py +65 -0
- agentbundle/build/tests/test_end_to_end_build.py +227 -0
- agentbundle/build/tests/test_lint_agents_md_legacy_block.py +135 -0
- agentbundle/build/tests/test_lint_agents_md_risk_block.py +116 -0
- agentbundle/build/tests/test_lint_packs.py +703 -0
- agentbundle/build/tests/test_load_pack_hook_wiring_safely.py +176 -0
- agentbundle/build/tests/test_pack_schema.py +265 -0
- agentbundle/build/tests/test_pack_schema_allowed_adapters.py +258 -0
- agentbundle/build/tests/test_pack_schema_install.py +305 -0
- agentbundle/build/tests/test_pipeline.py +272 -0
- agentbundle/build/tests/test_plugin_manifest_schema.py +327 -0
- agentbundle/build/tests/test_projections_merge_json.py +148 -0
- agentbundle/build/tests/test_scope_rails.py +398 -0
- agentbundle/build/tests/test_security.py +97 -0
- agentbundle/build/tests/test_self_host_check.py +2100 -0
- agentbundle/build/tests/test_shared_libs_projection.py +415 -0
- agentbundle/build/tests/test_shipped_packs_v07_declarations.py +100 -0
- agentbundle/build/tests/test_shipped_packs_v08_declarations.py +80 -0
- agentbundle/build/tests/test_validate.py +250 -0
- agentbundle/build/validate.py +141 -0
- agentbundle/catalogue.py +164 -0
- agentbundle/cli.py +486 -0
- agentbundle/commands/__init__.py +5 -0
- agentbundle/commands/_common.py +174 -0
- agentbundle/commands/_drop_warning.py +329 -0
- agentbundle/commands/adapt.py +343 -0
- agentbundle/commands/config.py +125 -0
- agentbundle/commands/diff.py +211 -0
- agentbundle/commands/init_state.py +279 -0
- agentbundle/commands/install.py +3026 -0
- agentbundle/commands/list_packs.py +170 -0
- agentbundle/commands/list_targets.py +23 -0
- agentbundle/commands/reconcile.py +161 -0
- agentbundle/commands/render.py +165 -0
- agentbundle/commands/scaffold.py +69 -0
- agentbundle/commands/uninstall.py +294 -0
- agentbundle/commands/upgrade.py +699 -0
- agentbundle/commands/validate.py +688 -0
- agentbundle/config.py +747 -0
- agentbundle/render.py +123 -0
- agentbundle/safety.py +633 -0
- agentbundle/scope.py +319 -0
- agentbundle/user_config.py +284 -0
- agentbundle/version.py +49 -0
- agentbundle-0.2.0.dist-info/METADATA +37 -0
- agentbundle-0.2.0.dist-info/RECORD +99 -0
- agentbundle-0.2.0.dist-info/WHEEL +5 -0
- agentbundle-0.2.0.dist-info/entry_points.txt +2 -0
- agentbundle-0.2.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
agentbundle/__init__.py,sha256=UuX8GyvxYJ9tJtF6Y1RSlkIehsP0-U5YTPbaEAJOJGM,558
|
|
2
|
+
agentbundle/__main__.py,sha256=5CDhGbwkOVzUT4M5XxkFWz2h1Xsb7WAgZlQJehkNnHU,102
|
|
3
|
+
agentbundle/catalogue.py,sha256=UvuFnyQwJq5Z4TJdoz_8K6yCicL9M09oirVsT09B1-c,6025
|
|
4
|
+
agentbundle/cli.py,sha256=WvkB0RrTnPHdvr9aa6wTlcXil6CW1Bh9okg3suxnUGM,20143
|
|
5
|
+
agentbundle/config.py,sha256=keoMrFXEcdlZdVCR8megGrxMUXPlZo-mwU4uS9XNQug,32312
|
|
6
|
+
agentbundle/render.py,sha256=9AcCraaagtS672rKIuEVTLwlPiqHEgkIJt2QZyIiqHY,4175
|
|
7
|
+
agentbundle/safety.py,sha256=CA-q9nDmgtAJPGT55pcls-lYVXdOkjZnphF7EJUHYcs,26403
|
|
8
|
+
agentbundle/scope.py,sha256=KtoFjTds5sw0Q0IDZXTRRE43txeXEJ-OBNpm4dFo4qc,12982
|
|
9
|
+
agentbundle/user_config.py,sha256=Bu7qOBQivO8DbXlm_zggzDUNes8jx-3rrpxl7R1c8jM,10508
|
|
10
|
+
agentbundle/version.py,sha256=3TEMVc382gm-fgOhokdotZIpvKNzc3PPjk9W5_Mn5-g,1685
|
|
11
|
+
agentbundle/_data/adapter.schema.json,sha256=w5LQEX0biDc_Pn8ka1mfa8nbSDg92NDkmUr3ELzk6s4,9038
|
|
12
|
+
agentbundle/_data/adapter.toml,sha256=TgmyzNpTh5EokFCH_EXUu3XTC1j2rkpv7ib32RICgmI,24599
|
|
13
|
+
agentbundle/_data/install-marker.py,sha256=opHa5O3rE_42HQwIqTYnQKFFYVrIBBeCkeToUitHiMM,44992
|
|
14
|
+
agentbundle/_data/pack.schema.json,sha256=ZaZLmgg7yctprMria6wPpg1oux6fB640q2NRyluFG_A,4344
|
|
15
|
+
agentbundle/_data/plugin-manifest.derived.schema.json,sha256=0iuZhDOVx1Sshud7qS_6AEu_4VLOUe6_N9p4SVRrJ1s,719
|
|
16
|
+
agentbundle/_data/plugin-manifest.schema.json,sha256=Hq6NEe3fL4W4nbttJPO3z_WFdmszY4BHNtMT2XuJsYM,394
|
|
17
|
+
agentbundle/build/__init__.py,sha256=NKxtvICHlnuj3T0O60vmP2moSj48aJ8cWsKDW0LiGrU,7036
|
|
18
|
+
agentbundle/build/__main__.py,sha256=SXg20LVQ5qL7yas8Dtvm9cLstQfUmEp-1o695fm2Q5w,145
|
|
19
|
+
agentbundle/build/adapter_root_bins.py,sha256=oWrCnyZQm47LeJ31O1OBG40KTypmrIzf1ZoCazO_X9E,13891
|
|
20
|
+
agentbundle/build/contract.py,sha256=qvp0YbWowYV5PXva5zREUlEf0KwPITOGF-UDWkC7tkE,592
|
|
21
|
+
agentbundle/build/lint_packs.py,sha256=hHV8Mn7BoWPXepFYOmczSRE4vUeKY0bVIy1NaEbuS04,21540
|
|
22
|
+
agentbundle/build/main.py,sha256=Zn6faB44S4UZkU6rnKf0qg1sm0Cg531KUPhb_V61NWU,23547
|
|
23
|
+
agentbundle/build/phase_order.py,sha256=uS_fDqIYScve8yOb1ABadiDdkEvUO7lmBqjMwlPEVgk,1535
|
|
24
|
+
agentbundle/build/scope_rails.py,sha256=3__YsT_UO9LrXTxTexDjndPeVT8A7rn37-1jdeZjod0,31529
|
|
25
|
+
agentbundle/build/self_host.py,sha256=n8qtMXylNACZQp6mVVSbyatZKX4Ar7H_-dTOCzlUqUU,62238
|
|
26
|
+
agentbundle/build/shared_libs.py,sha256=LpG0HkcVqZqZzIBdrnEpeKkrUW39h9N4Ef2q6n-EQww,12098
|
|
27
|
+
agentbundle/build/target_resolver.py,sha256=4yrCwJ5KxAh_GqHINT4t5FIDW8uE6xBL_Eqmw7yXUys,3218
|
|
28
|
+
agentbundle/build/validate.py,sha256=9QTW1pDQhlHhU1IKJtufFrFT1Bes9I3UZsyccEk3QcQ,6427
|
|
29
|
+
agentbundle/build/adapters/__init__.py,sha256=9Ewf1EWwASLlj1cljiEgMqYS3VPOFsf1N_JJ47hLWbA,1685
|
|
30
|
+
agentbundle/build/adapters/claude_code.py,sha256=V_DdvNGwCLGpBJzPz26Cyc7xt15_ryQFcNrM4NKUOy8,6475
|
|
31
|
+
agentbundle/build/adapters/codex.py,sha256=UNXquKMQZuXz3IQFjKm14_zrjZpPDZAu5ULwnaLK3oQ,10640
|
|
32
|
+
agentbundle/build/adapters/copilot.py,sha256=VtAFSp2sZ9Ietxke4k5nRKKp6cj3XjtmmkTXBo0B9ho,5760
|
|
33
|
+
agentbundle/build/adapters/kiro.py,sha256=rK_HrMwVq1Z4zvVcml6P3klTzpLRCsic8-rYYnHwwc4,26419
|
|
34
|
+
agentbundle/build/adapters/kiro_cli.py,sha256=UGaNxpcp_0sBAyN11yqezLy3PfI_AaFRh9gyzR8TRuc,2163
|
|
35
|
+
agentbundle/build/adapters/kiro_ide.py,sha256=dfX7jmbZAnPmXUNCRFJCbID1PHa5yXF_LnbPCNLfh9U,10609
|
|
36
|
+
agentbundle/build/projections/__init__.py,sha256=Zg5QXE3yE6jeOvQMSKbvyrrrl2f5hSO1qwgvlHWxfbA,676
|
|
37
|
+
agentbundle/build/projections/codex_agent_toml.py,sha256=q-V_oUNj6rPlHToeTnhfGx15UKFG1d0-TxbLs9zHU4s,8915
|
|
38
|
+
agentbundle/build/projections/copilot_agent_md.py,sha256=oBStaqGsnkOzXQwuoKxVL3FZulMEF8xLja4kSZLxB6E,8491
|
|
39
|
+
agentbundle/build/projections/copilot_hooks_json.py,sha256=3e5IlIv9woDLVQh_xy5VlaVjQ1AwDqQ5pwn2QRmtIMo,6464
|
|
40
|
+
agentbundle/build/projections/direct_directory.py,sha256=lk6iBYK2KPJzqey7XgBRGoS0hjFE208WetH_sJ0QeHI,1469
|
|
41
|
+
agentbundle/build/projections/hook_id.py,sha256=2X0-PSZQl6PVimM2fTVFtRGLpXFRM-8ksNx4r7QmKe8,1315
|
|
42
|
+
agentbundle/build/projections/kiro_ide_hook.py,sha256=HdIiEDZOlk1I4dVwT57wTc6meoSQLGPypEh5-uzU42E,10403
|
|
43
|
+
agentbundle/build/projections/merge_into_agent_json.py,sha256=4riuTIp4VOYXbZHALvhELrULAIeNCOGKCZnqExSWFG0,10123
|
|
44
|
+
agentbundle/build/projections/merge_json.py,sha256=RP-eBuGfOUdpDA5kx1I3sHr-rAkBChxq7FOgiZkyHBY,2155
|
|
45
|
+
agentbundle/build/projections/user_merge_json.py,sha256=gE9IJScoj3-zge3E8Q_RMGC9Pl5oVrga99HIYGo6DBM,12319
|
|
46
|
+
agentbundle/build/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
+
agentbundle/build/tests/test_adapter_claude_code.py,sha256=-2ICaGbAL5r4rOGJQUWenfSIP5ktedZTbZZR1YFMOus,11557
|
|
48
|
+
agentbundle/build/tests/test_adapter_codex.py,sha256=wqSqBM5oTRyRwj40sTqfU0AbXMMVBVFD8npohzTwsU8,28466
|
|
49
|
+
agentbundle/build/tests/test_adapter_copilot.py,sha256=Ar3BYdyViyVNzTFOvWKbO9yE8UsdnKXKT4hHRnKyZCE,3737
|
|
50
|
+
agentbundle/build/tests/test_adapter_kiro.py,sha256=l51i4Ax_oF5IQmuN4-zdx6smT2W4LPlQ3PiDiDEYI_U,20111
|
|
51
|
+
agentbundle/build/tests/test_adapter_kiro_alias.py,sha256=N3y6nGPUo5Dhuyk5vXeJhJVQseRM0kN3dq0nXh7EOk8,3828
|
|
52
|
+
agentbundle/build/tests/test_adapter_kiro_cli.py,sha256=PQbWFHikotXH1QNG9rFD2rG7moylzxRdrnRjfnP1e5Q,3982
|
|
53
|
+
agentbundle/build/tests/test_adapter_kiro_ide.py,sha256=co5vFBVgM87QGRoKo2zW6rCjzNpWtiP7qkkuH_qur2k,7722
|
|
54
|
+
agentbundle/build/tests/test_adapter_root_bins_projection.py,sha256=XneUJ1sd-l20_5YB89yrroXJlbgxZc5aDn9okVBaRC0,16698
|
|
55
|
+
agentbundle/build/tests/test_build_ships_seeds.py,sha256=iW0sXiA9wGBazJFwAO300YmxbUOBxwJwsw1Sh2OvhXs,2967
|
|
56
|
+
agentbundle/build/tests/test_contract.py,sha256=mMoWQ0udlWcZo7QTwpvsWxdBhawfzO83_uqLzLruNLg,23796
|
|
57
|
+
agentbundle/build/tests/test_contract_scope.py,sha256=mXYmO9V8OVs8VqRasGdL6zIdKG_cqZDFQHS6Hv-d3A4,9900
|
|
58
|
+
agentbundle/build/tests/test_contract_v07.py,sha256=mqXm0jKBDKNw7BkJ_pPoO9PLOhnilzLz3hJ4BpiADPg,8263
|
|
59
|
+
agentbundle/build/tests/test_contract_v08.py,sha256=s-newcaNeX7ZZt7WhhdHHfqjwx-a8azsA--5vwogBaI,10341
|
|
60
|
+
agentbundle/build/tests/test_direct_directory_cleanup.py,sha256=r62ybnJuTeqJNaZYPaPeJX-l9zyazErdEJ_8iutIKjM,1779
|
|
61
|
+
agentbundle/build/tests/test_end_to_end_build.py,sha256=1d6eMy-Ll6u58MZwEy81AcA6yn3HF7_ajfWFbUElh30,9101
|
|
62
|
+
agentbundle/build/tests/test_lint_agents_md_legacy_block.py,sha256=iQdi9g-bRM81eDTuD6hFDl6bPGh-pK-Mx8JnwF0Tq50,4392
|
|
63
|
+
agentbundle/build/tests/test_lint_agents_md_risk_block.py,sha256=086aZSIYcg9KOZGEbEhM0Nz5EFXBpEy3TBMlMemjBzE,4433
|
|
64
|
+
agentbundle/build/tests/test_lint_packs.py,sha256=tnN5-qXRfD8WEM3cd6rZuD8iQ6VE3kqR166Gq92pnSw,32079
|
|
65
|
+
agentbundle/build/tests/test_load_pack_hook_wiring_safely.py,sha256=RYwaJBHYDa6H6Sq17A_Y_bUGmQrpmdjoxGXoLxsbCzM,7001
|
|
66
|
+
agentbundle/build/tests/test_pack_schema.py,sha256=4h-4co_alcck_LHbAX2Uhpv4W02kAn6ukBFMS4DbwXY,8451
|
|
67
|
+
agentbundle/build/tests/test_pack_schema_allowed_adapters.py,sha256=l7QlY0yZ3zWG8pbp97AsmBCsajZnBE_VFKdH5wDZ064,9086
|
|
68
|
+
agentbundle/build/tests/test_pack_schema_install.py,sha256=8Qh1I1GTFjAsUzCkQHbwGnU6JSp7iKS1O5eYrckF7Ag,8365
|
|
69
|
+
agentbundle/build/tests/test_pipeline.py,sha256=BafVpChdPpgowentcB335NQQx26AVqdBJsf2556nPZE,10541
|
|
70
|
+
agentbundle/build/tests/test_plugin_manifest_schema.py,sha256=I6Qvtg3IjbfE8dyl8WQqfZPxO6iL_f5v71UA7oid2yA,12452
|
|
71
|
+
agentbundle/build/tests/test_projections_merge_json.py,sha256=0axh2bqyppONjdmVk6pzCZDcdP8muq94tY_d00Wi8mM,6431
|
|
72
|
+
agentbundle/build/tests/test_scope_rails.py,sha256=lAtXIG4XL07kY-0kWR_3_sT6OHcrAzsLUdt8og670Rk,16709
|
|
73
|
+
agentbundle/build/tests/test_security.py,sha256=g9jjEQWWrfG8PCHCugXERE47-9OlvfczEFVi8DneLBk,3789
|
|
74
|
+
agentbundle/build/tests/test_self_host_check.py,sha256=vOlfbL2Io6YYxZBmMpa-OukAtwdHPmF5tC9Ac5OW3sQ,90109
|
|
75
|
+
agentbundle/build/tests/test_shared_libs_projection.py,sha256=_XVCkWXratjP4K8SxrAqsAuxU80N1WdPMGxru6J-DmE,15625
|
|
76
|
+
agentbundle/build/tests/test_shipped_packs_v07_declarations.py,sha256=BKVbXF_IJc0fI273nsMia7ntlautnu-XCCMvot6agKY,4078
|
|
77
|
+
agentbundle/build/tests/test_shipped_packs_v08_declarations.py,sha256=i_qJcQl4XjjMTC-wSGPdpOGFp7GtLV6gepjOoucMs9o,2968
|
|
78
|
+
agentbundle/build/tests/test_validate.py,sha256=2xKDSMre9hsEoeNJclyoa0HM9ubizYW91UhjIguN_9Q,8515
|
|
79
|
+
agentbundle/commands/__init__.py,sha256=eCBPtf4MMyJMMS1VJpNKZeTq2q1fmfdmpiqZ7RwoieE,211
|
|
80
|
+
agentbundle/commands/_common.py,sha256=N9XqERTOHmW8y2dZvZHRDUohC9N1QoxVJjaa7Ys_zyo,7634
|
|
81
|
+
agentbundle/commands/_drop_warning.py,sha256=Yp7MYd21A6b0zmr0WA3EtB4VkRaDqS2oWxYVMsHmTVI,12300
|
|
82
|
+
agentbundle/commands/adapt.py,sha256=00TCOq8OrADXr5Nr27VGi3dKFVQ8jOxjp8rT8eaAZzE,13745
|
|
83
|
+
agentbundle/commands/config.py,sha256=xA8hrBRQmMkA0mPE6fsAmJG03MuY-XKeaFJdUXJL2_g,3576
|
|
84
|
+
agentbundle/commands/diff.py,sha256=sIT19-RX9SoMRUH26sCp8x8F2C0kliIYtwLWs7UUI9o,8519
|
|
85
|
+
agentbundle/commands/init_state.py,sha256=wZkJS53l44YDOZed4o80D5lerV1s4vWgoLVE-ip1MP4,11041
|
|
86
|
+
agentbundle/commands/install.py,sha256=LkPUoPZt0_LOB2m_3ROBG5IxpaRYVC015d9k1DKY05Q,134275
|
|
87
|
+
agentbundle/commands/list_packs.py,sha256=qfdKQ87sPNSRdq2ykNiG8Sx8gnPkPbK--sox1BqT_LA,6159
|
|
88
|
+
agentbundle/commands/list_targets.py,sha256=8KuwmAROPzw6hMpxE4b9XjozZikGaO67vWW2q5ReIpM,645
|
|
89
|
+
agentbundle/commands/reconcile.py,sha256=hBdFoxIL2vFs8mQzBWcRNZYkCGWCytM7dYoKCkljpgI,6428
|
|
90
|
+
agentbundle/commands/render.py,sha256=StdKjusB4foNBTIN7kQfLWLwFihZGVkLxAPU5UL4ni8,6026
|
|
91
|
+
agentbundle/commands/scaffold.py,sha256=L_abgUqRTGrQ29HkxToXtOJTzUWHy6z9Qxm--59w4Q0,2375
|
|
92
|
+
agentbundle/commands/uninstall.py,sha256=4e6k8RR08lJC73LP4QbpLYzyANIl0do_hNGL_XXSkQ0,12925
|
|
93
|
+
agentbundle/commands/upgrade.py,sha256=wwOxmKe5pZ0q4rr1Af3AemPm7ldXYQIfVbAefnBCJJo,31095
|
|
94
|
+
agentbundle/commands/validate.py,sha256=sD-0Ad_4DIYn8XoVKEKu1KxzMaq0KqlAfZ-JFrHPH6w,27890
|
|
95
|
+
agentbundle-0.2.0.dist-info/METADATA,sha256=t1jDMEk4n1t4AkmbAj0TL8LfgK2PNxK3_qcknbgMREU,1838
|
|
96
|
+
agentbundle-0.2.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
97
|
+
agentbundle-0.2.0.dist-info/entry_points.txt,sha256=oIMbpF_Gfy_d-uHw_jZkGWUrHY7AoPROKdeI0icH76s,53
|
|
98
|
+
agentbundle-0.2.0.dist-info/top_level.txt,sha256=ZkheZsJHJI5CrTSCaAfFof4AXyy5BHMkhggOHDXHCQo,12
|
|
99
|
+
agentbundle-0.2.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
agentbundle
|