Add comprehensive development roadmap via GitHub Issues
Created 10 detailed GitHub issues covering: - Project activation and management UI (#1-2) - Worker node coordination and visualization (#3-4) - Automated GitHub repository scanning (#5) - Intelligent model-to-issue matching (#6) - Multi-model task execution system (#7) - N8N workflow integration (#8) - Hive-Bzzz P2P bridge (#9) - Peer assistance protocol (#10) Each issue includes detailed specifications, acceptance criteria, technical implementation notes, and dependency mapping. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
11
mcp-server/node_modules/lunr/build/bower.json.template
generated
vendored
Normal file
11
mcp-server/node_modules/lunr/build/bower.json.template
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "lunr.js",
|
||||
"version": "@VERSION",
|
||||
"main": "lunr.js",
|
||||
"ignore": [
|
||||
"tests/",
|
||||
"perf/",
|
||||
"build/",
|
||||
"docs/"
|
||||
]
|
||||
}
|
||||
9
mcp-server/node_modules/lunr/build/component.json.template
generated
vendored
Normal file
9
mcp-server/node_modules/lunr/build/component.json.template
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"name": "lunr",
|
||||
"repo": "olivernn/lunr.js",
|
||||
"version": "@VERSION",
|
||||
"description": "Simple full-text search in your browser.",
|
||||
"license": "MIT",
|
||||
"main": "lunr.js",
|
||||
"scripts": ["lunr.js"]
|
||||
}
|
||||
11
mcp-server/node_modules/lunr/build/jsdoc.conf.json
generated
vendored
Normal file
11
mcp-server/node_modules/lunr/build/jsdoc.conf.json
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"plugins": ["plugins/markdown"],
|
||||
"destination": "docs",
|
||||
"readme": "README.md",
|
||||
"templates": {
|
||||
"default": {
|
||||
"useLongnameInNav": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
30
mcp-server/node_modules/lunr/build/package.json.template
generated
vendored
Normal file
30
mcp-server/node_modules/lunr/build/package.json.template
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "lunr",
|
||||
"description": "Simple full-text search in your browser.",
|
||||
"version": "@VERSION",
|
||||
"author": "Oliver Nightingale",
|
||||
"keywords": ["search"],
|
||||
"homepage": "https://lunrjs.com",
|
||||
"bugs": "https://github.com/olivernn/lunr.js/issues",
|
||||
"main": "lunr.js",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/olivernn/lunr.js.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"benchmark": "2.1.x",
|
||||
"chai": "3.5.x",
|
||||
"eslint-plugin-spellcheck": "0.0.8",
|
||||
"eslint": "3.4.x",
|
||||
"jsdoc": "3.5.x",
|
||||
"mocha": "3.3.x",
|
||||
"mustache": "2.2.x",
|
||||
"node-static": "0.7.x",
|
||||
"uglify-js": "2.6.x",
|
||||
"word-list": "1.0.x"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "make test"
|
||||
}
|
||||
}
|
||||
79
mcp-server/node_modules/lunr/build/release.sh
generated
vendored
Executable file
79
mcp-server/node_modules/lunr/build/release.sh
generated
vendored
Executable file
@@ -0,0 +1,79 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
file_has_changed () {
|
||||
if [ ! -f $1 ]; then
|
||||
return 1
|
||||
fi
|
||||
|
||||
for f in `git ls-files --modified`; do
|
||||
[[ "$f" == "$1" ]] && return 0
|
||||
done
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
version_is_unique () {
|
||||
for v in `git tag -l`; do
|
||||
[[ "$v" == "v$1" ]] && return 1
|
||||
done
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
on_master_branch () {
|
||||
[[ $(git symbolic-ref --short -q HEAD) == "master" ]] && return 0
|
||||
return 1
|
||||
}
|
||||
|
||||
version=$(cat VERSION)
|
||||
previous_version=$(git describe --abbrev=0)
|
||||
|
||||
if ! on_master_branch; then
|
||||
echo -e "\033[0;31mRefusing to release from non master branch.\033[0m"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! file_has_changed "VERSION"; then
|
||||
echo -e "\033[0;31mRefusing to release because VERSION has not changed.\033[0m"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! file_has_changed "CHANGELOG.md"; then
|
||||
echo -e "\033[0;31mRefusing to release because CHANGELOG.md has not been updated.\033[0m"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! file_has_changed "package.json"; then
|
||||
echo -e "\033[0;31mRefusing to release because package.json has not been updated.\033[0m"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! version_is_unique $version; then
|
||||
echo -e "\033[0;31mRefusing to release because VERSION is not unique.\033[0m"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo -e "\033[1mAbout to release v$version with the following changes:\033[0m"
|
||||
git log --date=short --pretty=format:"%ad %h%x09%an%x09%s" $previous_version..HEAD
|
||||
|
||||
echo
|
||||
|
||||
echo -e "\033[1mThe following files will be part of the release commit:\033[0m"
|
||||
git ls-files --modified
|
||||
|
||||
echo
|
||||
|
||||
read -e -p "Are you sure you want to release? " -n 1 -r
|
||||
echo
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
||||
echo -e "\033[0;32mReleasing...\033[0m"
|
||||
echo
|
||||
git commit -a -m "Build version $version"
|
||||
git tag -a v$version -m "Version $version"
|
||||
git push origin master
|
||||
git push --tags
|
||||
|
||||
npm publish
|
||||
else
|
||||
echo -e "\033[0;31mCancelling...\033[0m"
|
||||
fi
|
||||
29
mcp-server/node_modules/lunr/build/wrapper_end
generated
vendored
Normal file
29
mcp-server/node_modules/lunr/build/wrapper_end
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
|
||||
/**
|
||||
* export the module via AMD, CommonJS or as a browser global
|
||||
* Export code from https://github.com/umdjs/umd/blob/master/returnExports.js
|
||||
*/
|
||||
;(function (root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(factory)
|
||||
} else if (typeof exports === 'object') {
|
||||
/**
|
||||
* Node. Does not work with strict CommonJS, but
|
||||
* only CommonJS-like enviroments that support module.exports,
|
||||
* like Node.
|
||||
*/
|
||||
module.exports = factory()
|
||||
} else {
|
||||
// Browser globals (root is window)
|
||||
root.lunr = factory()
|
||||
}
|
||||
}(this, function () {
|
||||
/**
|
||||
* Just return a value to define the module export.
|
||||
* This example returns an object, but the module
|
||||
* can return a function as the exported value.
|
||||
*/
|
||||
return lunr
|
||||
}))
|
||||
})();
|
||||
8
mcp-server/node_modules/lunr/build/wrapper_start
generated
vendored
Normal file
8
mcp-server/node_modules/lunr/build/wrapper_start
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - @VERSION
|
||||
* Copyright (C) @YEAR Oliver Nightingale
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
;(function(){
|
||||
|
||||
Reference in New Issue
Block a user