bindu-onboard-cli 0.1.0__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.
Files changed (148) hide show
  1. bindu_onboard_cli-0.1.0/.agents/README.md +63 -0
  2. bindu_onboard_cli-0.1.0/.gitignore +205 -0
  3. bindu_onboard_cli-0.1.0/LICENSE.md +104 -0
  4. bindu_onboard_cli-0.1.0/PKG-INFO +795 -0
  5. bindu_onboard_cli-0.1.0/README.md +713 -0
  6. bindu_onboard_cli-0.1.0/alembic/README.md +270 -0
  7. bindu_onboard_cli-0.1.0/assets/agent-ui.png +0 -0
  8. bindu_onboard_cli-0.1.0/assets/agno-simple.png +0 -0
  9. bindu_onboard_cli-0.1.0/assets/bindu.png +0 -0
  10. bindu_onboard_cli-0.1.0/assets/light.svg +18 -0
  11. bindu_onboard_cli-0.1.0/assets/new-ui.png +0 -0
  12. bindu_onboard_cli-0.1.0/assets/payment-required-base.png +0 -0
  13. bindu_onboard_cli-0.1.0/assets/payment-required-success.png +0 -0
  14. bindu_onboard_cli-0.1.0/assets/payment-required.png +0 -0
  15. bindu_onboard_cli-0.1.0/assets/sunflower-footer.jpeg +0 -0
  16. bindu_onboard_cli-0.1.0/assets/sunflower-mountains.jpeg +0 -0
  17. bindu_onboard_cli-0.1.0/bindu/__init__.py +10 -0
  18. bindu_onboard_cli-0.1.0/bindu/__version__.py +50 -0
  19. bindu_onboard_cli-0.1.0/bindu/auth/__init__.py +27 -0
  20. bindu_onboard_cli-0.1.0/bindu/auth/hydra/__init__.py +21 -0
  21. bindu_onboard_cli-0.1.0/bindu/auth/hydra/client.py +276 -0
  22. bindu_onboard_cli-0.1.0/bindu/auth/hydra/registration.py +296 -0
  23. bindu_onboard_cli-0.1.0/bindu/cli/__init__.py +0 -0
  24. bindu_onboard_cli-0.1.0/bindu/cli/main.py +10 -0
  25. bindu_onboard_cli-0.1.0/bindu/cli/onboard.py +322 -0
  26. bindu_onboard_cli-0.1.0/bindu/common/__init__.py +19 -0
  27. bindu_onboard_cli-0.1.0/bindu/common/models.py +331 -0
  28. bindu_onboard_cli-0.1.0/bindu/common/protocol/__init__.py +30 -0
  29. bindu_onboard_cli-0.1.0/bindu/common/protocol/types.py +1942 -0
  30. bindu_onboard_cli-0.1.0/bindu/extensions/__init__.py +47 -0
  31. bindu_onboard_cli-0.1.0/bindu/extensions/did/__init__.py +52 -0
  32. bindu_onboard_cli-0.1.0/bindu/extensions/did/did_agent_extension.py +383 -0
  33. bindu_onboard_cli-0.1.0/bindu/extensions/did/validation.py +211 -0
  34. bindu_onboard_cli-0.1.0/bindu/extensions/x402/__init__.py +52 -0
  35. bindu_onboard_cli-0.1.0/bindu/extensions/x402/extension.py +23 -0
  36. bindu_onboard_cli-0.1.0/bindu/extensions/x402/utils.py +28 -0
  37. bindu_onboard_cli-0.1.0/bindu/extensions/x402/x402_agent_extension.py +120 -0
  38. bindu_onboard_cli-0.1.0/bindu/observability/__init__.py +92 -0
  39. bindu_onboard_cli-0.1.0/bindu/observability/openinference.py +419 -0
  40. bindu_onboard_cli-0.1.0/bindu/observability/sentry.py +222 -0
  41. bindu_onboard_cli-0.1.0/bindu/penguin/__init__.py +29 -0
  42. bindu_onboard_cli-0.1.0/bindu/penguin/bindufy.py +519 -0
  43. bindu_onboard_cli-0.1.0/bindu/penguin/config_validator.py +269 -0
  44. bindu_onboard_cli-0.1.0/bindu/penguin/did_setup.py +120 -0
  45. bindu_onboard_cli-0.1.0/bindu/penguin/manifest.py +298 -0
  46. bindu_onboard_cli-0.1.0/bindu/server/__init__.py +29 -0
  47. bindu_onboard_cli-0.1.0/bindu/server/applications.py +669 -0
  48. bindu_onboard_cli-0.1.0/bindu/server/endpoints/__init__.py +48 -0
  49. bindu_onboard_cli-0.1.0/bindu/server/endpoints/a2a_protocol.py +196 -0
  50. bindu_onboard_cli-0.1.0/bindu/server/endpoints/agent_card.py +129 -0
  51. bindu_onboard_cli-0.1.0/bindu/server/endpoints/did_endpoints.py +81 -0
  52. bindu_onboard_cli-0.1.0/bindu/server/endpoints/health.py +149 -0
  53. bindu_onboard_cli-0.1.0/bindu/server/endpoints/metrics.py +84 -0
  54. bindu_onboard_cli-0.1.0/bindu/server/endpoints/negotiation.py +260 -0
  55. bindu_onboard_cli-0.1.0/bindu/server/endpoints/payment_sessions.py +432 -0
  56. bindu_onboard_cli-0.1.0/bindu/server/endpoints/skills.py +171 -0
  57. bindu_onboard_cli-0.1.0/bindu/server/handlers/__init__.py +13 -0
  58. bindu_onboard_cli-0.1.0/bindu/server/handlers/context_handlers.py +79 -0
  59. bindu_onboard_cli-0.1.0/bindu/server/handlers/message_handlers.py +284 -0
  60. bindu_onboard_cli-0.1.0/bindu/server/handlers/task_handlers.py +136 -0
  61. bindu_onboard_cli-0.1.0/bindu/server/metrics.py +311 -0
  62. bindu_onboard_cli-0.1.0/bindu/server/middleware/__init__.py +45 -0
  63. bindu_onboard_cli-0.1.0/bindu/server/middleware/auth/__init__.py +27 -0
  64. bindu_onboard_cli-0.1.0/bindu/server/middleware/auth/base.py +224 -0
  65. bindu_onboard_cli-0.1.0/bindu/server/middleware/auth/hydra.py +335 -0
  66. bindu_onboard_cli-0.1.0/bindu/server/middleware/metrics.py +102 -0
  67. bindu_onboard_cli-0.1.0/bindu/server/middleware/x402/__init__.py +36 -0
  68. bindu_onboard_cli-0.1.0/bindu/server/middleware/x402/payment_session_manager.py +240 -0
  69. bindu_onboard_cli-0.1.0/bindu/server/middleware/x402/x402_middleware.py +413 -0
  70. bindu_onboard_cli-0.1.0/bindu/server/negotiation/__init__.py +18 -0
  71. bindu_onboard_cli-0.1.0/bindu/server/negotiation/capability_calculator.py +663 -0
  72. bindu_onboard_cli-0.1.0/bindu/server/negotiation/embedder.py +277 -0
  73. bindu_onboard_cli-0.1.0/bindu/server/notifications/__init__.py +9 -0
  74. bindu_onboard_cli-0.1.0/bindu/server/notifications/push_manager.py +547 -0
  75. bindu_onboard_cli-0.1.0/bindu/server/scheduler/__init__.py +65 -0
  76. bindu_onboard_cli-0.1.0/bindu/server/scheduler/base.py +84 -0
  77. bindu_onboard_cli-0.1.0/bindu/server/scheduler/factory.py +121 -0
  78. bindu_onboard_cli-0.1.0/bindu/server/scheduler/memory_scheduler.py +109 -0
  79. bindu_onboard_cli-0.1.0/bindu/server/scheduler/redis_scheduler.py +303 -0
  80. bindu_onboard_cli-0.1.0/bindu/server/storage/__init__.py +80 -0
  81. bindu_onboard_cli-0.1.0/bindu/server/storage/base.py +291 -0
  82. bindu_onboard_cli-0.1.0/bindu/server/storage/factory.py +120 -0
  83. bindu_onboard_cli-0.1.0/bindu/server/storage/helpers/__init__.py +22 -0
  84. bindu_onboard_cli-0.1.0/bindu/server/storage/helpers/db_operations.py +61 -0
  85. bindu_onboard_cli-0.1.0/bindu/server/storage/helpers/normalization.py +64 -0
  86. bindu_onboard_cli-0.1.0/bindu/server/storage/helpers/security.py +67 -0
  87. bindu_onboard_cli-0.1.0/bindu/server/storage/helpers/serialization.py +25 -0
  88. bindu_onboard_cli-0.1.0/bindu/server/storage/helpers/validation.py +33 -0
  89. bindu_onboard_cli-0.1.0/bindu/server/storage/memory_storage.py +590 -0
  90. bindu_onboard_cli-0.1.0/bindu/server/storage/postgres_storage.py +1038 -0
  91. bindu_onboard_cli-0.1.0/bindu/server/storage/schema.py +230 -0
  92. bindu_onboard_cli-0.1.0/bindu/server/task_manager.py +283 -0
  93. bindu_onboard_cli-0.1.0/bindu/server/workers/__init__.py +26 -0
  94. bindu_onboard_cli-0.1.0/bindu/server/workers/base.py +241 -0
  95. bindu_onboard_cli-0.1.0/bindu/server/workers/helpers/__init__.py +11 -0
  96. bindu_onboard_cli-0.1.0/bindu/server/workers/helpers/payment_handler.py +232 -0
  97. bindu_onboard_cli-0.1.0/bindu/server/workers/helpers/response_detector.py +118 -0
  98. bindu_onboard_cli-0.1.0/bindu/server/workers/helpers/result_processor.py +141 -0
  99. bindu_onboard_cli-0.1.0/bindu/server/workers/manifest_worker.py +615 -0
  100. bindu_onboard_cli-0.1.0/bindu/settings.py +979 -0
  101. bindu_onboard_cli-0.1.0/bindu/tunneling/__init__.py +12 -0
  102. bindu_onboard_cli-0.1.0/bindu/tunneling/binary.py +167 -0
  103. bindu_onboard_cli-0.1.0/bindu/tunneling/config.py +55 -0
  104. bindu_onboard_cli-0.1.0/bindu/tunneling/manager.py +154 -0
  105. bindu_onboard_cli-0.1.0/bindu/tunneling/tunnel.py +238 -0
  106. bindu_onboard_cli-0.1.0/bindu/utils/__init__.py +49 -0
  107. bindu_onboard_cli-0.1.0/bindu/utils/agent_token_utils.py +181 -0
  108. bindu_onboard_cli-0.1.0/bindu/utils/capabilities.py +57 -0
  109. bindu_onboard_cli-0.1.0/bindu/utils/config_loader.py +583 -0
  110. bindu_onboard_cli-0.1.0/bindu/utils/did_signature.py +235 -0
  111. bindu_onboard_cli-0.1.0/bindu/utils/did_utils.py +42 -0
  112. bindu_onboard_cli-0.1.0/bindu/utils/display.py +209 -0
  113. bindu_onboard_cli-0.1.0/bindu/utils/env_loader.py +106 -0
  114. bindu_onboard_cli-0.1.0/bindu/utils/http_client.py +330 -0
  115. bindu_onboard_cli-0.1.0/bindu/utils/hybrid_auth_client.py +257 -0
  116. bindu_onboard_cli-0.1.0/bindu/utils/logging.py +134 -0
  117. bindu_onboard_cli-0.1.0/bindu/utils/notifications.py +222 -0
  118. bindu_onboard_cli-0.1.0/bindu/utils/path_resolver.py +117 -0
  119. bindu_onboard_cli-0.1.0/bindu/utils/request_utils.py +115 -0
  120. bindu_onboard_cli-0.1.0/bindu/utils/retry.py +327 -0
  121. bindu_onboard_cli-0.1.0/bindu/utils/schema_manager.py +269 -0
  122. bindu_onboard_cli-0.1.0/bindu/utils/security.py +32 -0
  123. bindu_onboard_cli-0.1.0/bindu/utils/server_runner.py +62 -0
  124. bindu_onboard_cli-0.1.0/bindu/utils/skill_loader.py +168 -0
  125. bindu_onboard_cli-0.1.0/bindu/utils/skill_utils.py +23 -0
  126. bindu_onboard_cli-0.1.0/bindu/utils/task_telemetry.py +293 -0
  127. bindu_onboard_cli-0.1.0/bindu/utils/vault_client.py +385 -0
  128. bindu_onboard_cli-0.1.0/bindu/utils/worker_utils.py +250 -0
  129. bindu_onboard_cli-0.1.0/examples/README.md +138 -0
  130. bindu_onboard_cli-0.1.0/examples/ag2_research_team/README.md +30 -0
  131. bindu_onboard_cli-0.1.0/examples/agent_swarm/README.md +422 -0
  132. bindu_onboard_cli-0.1.0/examples/ai-data-analysis-agent/README.md +37 -0
  133. bindu_onboard_cli-0.1.0/examples/cerina_bindu/cbt/README.md +218 -0
  134. bindu_onboard_cli-0.1.0/examples/cybersecurity-newsletter/README.md +168 -0
  135. bindu_onboard_cli-0.1.0/examples/document-analyzer/README.md +240 -0
  136. bindu_onboard_cli-0.1.0/examples/langgraph_blog_writing_agent/README.md +52 -0
  137. bindu_onboard_cli-0.1.0/examples/news-summarizer/README.md +93 -0
  138. bindu_onboard_cli-0.1.0/examples/premium-advisor/README.md +285 -0
  139. bindu_onboard_cli-0.1.0/examples/speech-to-text/README.md +269 -0
  140. bindu_onboard_cli-0.1.0/examples/summarizer/README.md +243 -0
  141. bindu_onboard_cli-0.1.0/examples/weather-research/README.md +185 -0
  142. bindu_onboard_cli-0.1.0/examples/web-scraping-agent/README.md +106 -0
  143. bindu_onboard_cli-0.1.0/frontend/README.md +44 -0
  144. bindu_onboard_cli-0.1.0/frontend/src/lib/server/endpoints/bindu/binduToTextGenerationStream.ts +307 -0
  145. bindu_onboard_cli-0.1.0/frontend/src/lib/server/endpoints/bindu/endpointBindu.ts +344 -0
  146. bindu_onboard_cli-0.1.0/frontend/src/lib/server/endpoints/bindu/types.ts +226 -0
  147. bindu_onboard_cli-0.1.0/pyproject.toml +160 -0
  148. bindu_onboard_cli-0.1.0/tests/README.md +210 -0
@@ -0,0 +1,63 @@
1
+ # Bindu Agent Workflows & Skills
2
+
3
+ This directory contains AI agent workflows and skills for automating Bindu development tasks.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ .bindu/
9
+ ├── workflows/ # Step-by-step guides for complex tasks
10
+ │ ├── testing.md # Run tests and validate changes
11
+ │ ├── deployment.md # Deploy Bindu agents
12
+ │ └── release.md # Create releases and tags
13
+ └── skills/ # Modular, reusable capabilities
14
+ ├── test-pr/ # Test pull requests
15
+ ├── deploy-agent/ # Deploy agents to production
16
+ └── create-release/ # Create release notes and tags
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ ### For AI Coding Assistants (Cascade, Windsurf, etc.)
22
+
23
+ When working on Bindu, reference these workflows:
24
+
25
+ ```
26
+ /workflow testing # Run comprehensive tests
27
+ /workflow deployment # Deploy an agent
28
+ /workflow release # Create a new release
29
+ ```
30
+
31
+ ### For Skills
32
+
33
+ Skills are invoked by workflows or directly:
34
+
35
+ ```
36
+ /skill test-pr <PR-number> # Test a pull request
37
+ /skill deploy-agent <agent-name> # Deploy an agent
38
+ /skill create-release <version> # Create a release
39
+ ```
40
+
41
+ ## Workflow Philosophy
42
+
43
+ 1. **Script-First**: Workflows invoke scripts, not manual commands
44
+ 2. **Deterministic Artifacts**: Generate `.local/` artifacts for handoffs
45
+ 3. **Safety Guardrails**: Never push to main, always verify before destructive actions
46
+ 4. **Structured Handoffs**: Skills communicate via JSON artifacts
47
+
48
+ ## Artifact Convention
49
+
50
+ All workflows generate artifacts in `.local/` directory:
51
+
52
+ - `.local/test-results.json` - Test execution results
53
+ - `.local/deployment.json` - Deployment metadata
54
+ - `.local/release.json` - Release information
55
+
56
+ ## Contributing
57
+
58
+ When adding new workflows or skills:
59
+
60
+ 1. Follow the existing structure
61
+ 2. Include YAML frontmatter with description
62
+ 3. Define clear inputs, outputs, and safety guardrails
63
+ 4. Generate deterministic artifacts for handoffs
@@ -0,0 +1,205 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib64/
18
+ parts/
19
+ sdist/
20
+ var/
21
+ wheels/
22
+ share/python-wheels/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+ MANIFEST
27
+
28
+ # PyInstaller
29
+ # Usually these files are written by a python script from a template
30
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
31
+ *.manifest
32
+ *.spec
33
+
34
+ # Installer logs
35
+ pip-log.txt
36
+ pip-delete-this-directory.txt
37
+
38
+ # Unit test / coverage reports
39
+ htmlcov/
40
+ .tox/
41
+ .nox/
42
+ .coverage
43
+ .coverage.*
44
+ .cache
45
+ nosetests.xml
46
+ coverage.xml
47
+ *.cover
48
+ *.py,cover
49
+ .hypothesis/
50
+ .pytest_cache/
51
+ cover/
52
+
53
+ # Translations
54
+ *.mo
55
+ *.pot
56
+
57
+ # Django stuff:
58
+ *.log
59
+ local_settings.py
60
+ db.sqlite3
61
+ db.sqlite3-journal
62
+
63
+ # Flask stuff:
64
+ instance/
65
+ .webassets-cache
66
+
67
+ # Scrapy stuff:
68
+ .scrapy
69
+
70
+ # Sphinx documentation
71
+ docs/_build/
72
+
73
+ # PyBuilder
74
+ .pybuilder/
75
+ target/
76
+
77
+ # Jupyter Notebook
78
+ .ipynb_checkpoints
79
+
80
+ # IPython
81
+ profile_default/
82
+ ipython_config.py
83
+
84
+ # pyenv
85
+ # For a library or package, you might want to ignore these files since the code is
86
+ # intended to run in multiple environments; otherwise, check them in:
87
+ # .python-version
88
+
89
+ # pipenv
90
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
91
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
92
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
93
+ # install all needed dependencies.
94
+ #Pipfile.lock
95
+
96
+ # UV
97
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
98
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
99
+ # commonly ignored for libraries.
100
+ #uv.lock
101
+
102
+ # poetry
103
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
104
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
105
+ # commonly ignored for libraries.
106
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
107
+ #poetry.lock
108
+
109
+ # pdm
110
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
111
+ #pdm.lock
112
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
113
+ # in version control.
114
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
115
+ .pdm.toml
116
+ .pdm-python
117
+ .pdm-build/
118
+
119
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
120
+ __pypackages__/
121
+
122
+ # Celery stuff
123
+ celerybeat-schedule
124
+ celerybeat.pid
125
+
126
+ # SageMath parsed files
127
+ *.sage.py
128
+
129
+ # Environments
130
+ .env
131
+ .venv
132
+ env/
133
+ venv/
134
+ ENV/
135
+ env.bak/
136
+ venv.bak/
137
+
138
+ # Spyder project settings
139
+ .spyderproject
140
+ .spyproject
141
+
142
+ # Rope project settings
143
+ .ropeproject
144
+
145
+ # mkdocs documentation
146
+ /site
147
+
148
+ # mypy
149
+ .mypy_cache/
150
+ .dmypy.json
151
+ dmypy.json
152
+
153
+ # Pyre type checker
154
+ .pyre/
155
+
156
+ # pytype static type analyzer
157
+ .pytype/
158
+
159
+ # Cython debug symbols
160
+ cython_debug/
161
+
162
+ # PyCharm
163
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
164
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
165
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
166
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
167
+ #.idea/
168
+
169
+ # Ruff stuff:
170
+ .ruff_cache/
171
+
172
+ # PyPI configuration file
173
+ .pypirc
174
+ .DS_Store
175
+
176
+ # bindu project files
177
+ bindu-project/*
178
+ bindu-project_private_key.json
179
+ bindu_project_certificates/*
180
+ bindu_project_private_key.json
181
+
182
+ # Examples directory - exclude all generated files
183
+ examples/.bindu/*
184
+ examples/.bindu/private.pem
185
+ examples/.bindu/public.pem
186
+
187
+ examples/agent_swarm/.bindu/private.pem
188
+ examples/agent_swarm/.bindu/public.pem
189
+
190
+ # Pebbling keys (DID private/public keys)
191
+ examples/.pebbling/*
192
+ **/.pebbling/private.pem
193
+ **/.pebbling/public.pem
194
+
195
+ # Security scanning baselines (tracked for audit)
196
+ # .secrets.baseline
197
+ # .bandit.baseline
198
+
199
+ # Auto-generated version file (generated during build)
200
+ bindu/_version.py
201
+ bindu/penguin/.bindu/private.pem
202
+ bindu/penguin/.bindu/public.pem
203
+ .bindu/
204
+
205
+ postman/*
@@ -0,0 +1,104 @@
1
+ # Apache License 2.0
2
+
3
+ Copyright 2026 Bindu - getbindu.com
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+
17
+ ---
18
+
19
+ ## Apache License 2.0 - Full Text
20
+
21
+ **Version 2.0, January 2004**
22
+ http://www.apache.org/licenses/
23
+
24
+ ### TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
25
+
26
+ #### 1. Definitions
27
+
28
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
29
+
30
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
31
+
32
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
33
+
34
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
35
+
36
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
37
+
38
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
39
+
40
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
41
+
42
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
43
+
44
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
45
+
46
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
47
+
48
+ #### 2. Grant of Copyright License
49
+
50
+ Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
51
+
52
+ #### 3. Grant of Patent License
53
+
54
+ Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
55
+
56
+ #### 4. Redistribution
57
+
58
+ You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
59
+
60
+ 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
61
+ 2. You must cause any modified files to carry prominent notices stating that You changed the files; and
62
+ 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
63
+ 4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
64
+
65
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
66
+
67
+ #### 5. Submission of Contributions
68
+
69
+ Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
70
+
71
+ #### 6. Trademarks
72
+
73
+ This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
74
+
75
+ #### 7. Disclaimer of Warranty
76
+
77
+ Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
78
+
79
+ #### 8. Limitation of Liability
80
+
81
+ In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
82
+
83
+ #### 9. Accepting Warranty or Additional Liability
84
+
85
+ While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
86
+
87
+ ---
88
+
89
+ ## About Bindu
90
+
91
+ Bindu is an open-source framework for building AI agents with:
92
+ - **Identity** - Decentralized identifiers (DIDs) for agent authentication
93
+ - **Communication** - A2A protocol for agent-to-agent interaction
94
+ - **Payments** - X402 protocol for monetizing agent services
95
+
96
+ Visit [getbindu.com](https://getbindu.com) to learn more.
97
+
98
+ ## Contributing
99
+
100
+ We welcome contributions! By contributing to this project, you agree that your contributions will be licensed under the Apache License 2.0.
101
+
102
+ ## Contact
103
+
104
+ For questions or support, contact us at raahul@getbindu.com