agentbeacon 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.
- agentbeacon-0.1.0/LICENSE +21 -0
- agentbeacon-0.1.0/PKG-INFO +30 -0
- agentbeacon-0.1.0/README.md +17 -0
- agentbeacon-0.1.0/pyproject.toml +24 -0
- agentbeacon-0.1.0/setup.cfg +4 -0
- agentbeacon-0.1.0/src/agentbeacon/__init__.py +0 -0
- agentbeacon-0.1.0/src/agentbeacon/main.py +7 -0
- agentbeacon-0.1.0/src/agentbeacon.egg-info/PKG-INFO +30 -0
- agentbeacon-0.1.0/src/agentbeacon.egg-info/SOURCES.txt +11 -0
- agentbeacon-0.1.0/src/agentbeacon.egg-info/dependency_links.txt +1 -0
- agentbeacon-0.1.0/src/agentbeacon.egg-info/entry_points.txt +2 -0
- agentbeacon-0.1.0/src/agentbeacon.egg-info/requires.txt +2 -0
- agentbeacon-0.1.0/src/agentbeacon.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Adrian Quiroga
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentbeacon
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Semantic code search for AI agents via Model Context Protocol
|
|
5
|
+
Author-email: Adrian Quiroga <git@adrq.net>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: fastmcp>=2.11.3
|
|
11
|
+
Requires-Dist: pre-commit>=4.3.0
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
|
|
14
|
+
# AgentBeacon
|
|
15
|
+
|
|
16
|
+
Semantic code search for AI agents via Model Context Protocol (MCP). Helps AI coding assistants find relevant code patterns in large codebases.
|
|
17
|
+
|
|
18
|
+
## Goals
|
|
19
|
+
|
|
20
|
+
- Fast semantic search in 10M+ line codebases
|
|
21
|
+
- LLM-enhanced pattern discovery and reuse
|
|
22
|
+
- Reduce AI agent context blindness
|
|
23
|
+
|
|
24
|
+
## Status
|
|
25
|
+
|
|
26
|
+
Early development phase.
|
|
27
|
+
|
|
28
|
+
## License
|
|
29
|
+
|
|
30
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# AgentBeacon
|
|
2
|
+
|
|
3
|
+
Semantic code search for AI agents via Model Context Protocol (MCP). Helps AI coding assistants find relevant code patterns in large codebases.
|
|
4
|
+
|
|
5
|
+
## Goals
|
|
6
|
+
|
|
7
|
+
- Fast semantic search in 10M+ line codebases
|
|
8
|
+
- LLM-enhanced pattern discovery and reuse
|
|
9
|
+
- Reduce AI agent context blindness
|
|
10
|
+
|
|
11
|
+
## Status
|
|
12
|
+
|
|
13
|
+
Early development phase.
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "agentbeacon"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Semantic code search for AI agents via Model Context Protocol"
|
|
5
|
+
authors = [{name = "Adrian Quiroga", email = "git@adrq.net"}]
|
|
6
|
+
readme = "README.md"
|
|
7
|
+
requires-python = ">=3.10"
|
|
8
|
+
license = "MIT"
|
|
9
|
+
dependencies = [
|
|
10
|
+
"fastmcp>=2.11.3",
|
|
11
|
+
"pre-commit>=4.3.0",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[project.scripts]
|
|
15
|
+
agentbeacon = "agentbeacon.main:mcp.run"
|
|
16
|
+
|
|
17
|
+
[dependency-groups]
|
|
18
|
+
dev = [
|
|
19
|
+
"pytest>=8.4.1",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[build-system]
|
|
23
|
+
requires = ["setuptools>=61.0"]
|
|
24
|
+
build-backend = "setuptools.build_meta"
|
|
File without changes
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentbeacon
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Semantic code search for AI agents via Model Context Protocol
|
|
5
|
+
Author-email: Adrian Quiroga <git@adrq.net>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: fastmcp>=2.11.3
|
|
11
|
+
Requires-Dist: pre-commit>=4.3.0
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
|
|
14
|
+
# AgentBeacon
|
|
15
|
+
|
|
16
|
+
Semantic code search for AI agents via Model Context Protocol (MCP). Helps AI coding assistants find relevant code patterns in large codebases.
|
|
17
|
+
|
|
18
|
+
## Goals
|
|
19
|
+
|
|
20
|
+
- Fast semantic search in 10M+ line codebases
|
|
21
|
+
- LLM-enhanced pattern discovery and reuse
|
|
22
|
+
- Reduce AI agent context blindness
|
|
23
|
+
|
|
24
|
+
## Status
|
|
25
|
+
|
|
26
|
+
Early development phase.
|
|
27
|
+
|
|
28
|
+
## License
|
|
29
|
+
|
|
30
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/agentbeacon/__init__.py
|
|
5
|
+
src/agentbeacon/main.py
|
|
6
|
+
src/agentbeacon.egg-info/PKG-INFO
|
|
7
|
+
src/agentbeacon.egg-info/SOURCES.txt
|
|
8
|
+
src/agentbeacon.egg-info/dependency_links.txt
|
|
9
|
+
src/agentbeacon.egg-info/entry_points.txt
|
|
10
|
+
src/agentbeacon.egg-info/requires.txt
|
|
11
|
+
src/agentbeacon.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
agentbeacon
|