devduck 0.2.0__py3-none-any.whl → 0.3.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.
Potentially problematic release.
This version of devduck might be problematic. Click here for more details.
- devduck/__init__.py +273 -99
- devduck/_version.py +2 -2
- devduck/tools/create_subagent.py +659 -0
- devduck/tools/store_in_kb.py +187 -0
- devduck/tools/tcp.py +0 -3
- devduck/tools/use_github.py +438 -0
- devduck/tools/websocket.py +1 -1
- {devduck-0.2.0.dist-info → devduck-0.3.0.dist-info}/METADATA +17 -8
- devduck-0.3.0.dist-info/RECORD +18 -0
- devduck/install.sh +0 -42
- devduck-0.2.0.dist-info/RECORD +0 -16
- {devduck-0.2.0.dist-info → devduck-0.3.0.dist-info}/WHEEL +0 -0
- {devduck-0.2.0.dist-info → devduck-0.3.0.dist-info}/entry_points.txt +0 -0
- {devduck-0.2.0.dist-info → devduck-0.3.0.dist-info}/licenses/LICENSE +0 -0
- {devduck-0.2.0.dist-info → devduck-0.3.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
devduck/__init__.py,sha256=L_wVHAoQSMcnZaz-8vhGir9itE7RGq7jqSqTN6Uya1A,58613
|
|
2
|
+
devduck/__main__.py,sha256=aeF2RR4k7lzSR2X1QKV9XQPCKhtsH0JYUv2etBBqmL0,145
|
|
3
|
+
devduck/_version.py,sha256=5zTqm8rgXsWYBpB2M3Zw_K1D-aV8wP7NsBLrmMKkrAQ,704
|
|
4
|
+
devduck/test_redduck.py,sha256=nqRchR7d54jWGx7JN5tji2ZV4Ek4L9s-P7hp0mKjA0Y,1773
|
|
5
|
+
devduck/tools/__init__.py,sha256=mu3V4jL2ACN4f-pnUID_A2p6o3Yc_-V_y9071PduCR0,177
|
|
6
|
+
devduck/tools/create_subagent.py,sha256=UzRz9BmU4PbTveZROEpZ311aH-u-i6x89gttu-CniAE,24687
|
|
7
|
+
devduck/tools/install_tools.py,sha256=wm_67b9IfY-2wRuWgxuEKhaSIV5vNfbGmZL3G9dGi2A,10348
|
|
8
|
+
devduck/tools/mcp_server.py,sha256=oyF1gb7K-OlxyJLUO3L-vNo2ajKzIrcnT1crwKMOkhU,20118
|
|
9
|
+
devduck/tools/store_in_kb.py,sha256=-JM-oRQKR3FBubKHFHmXRnZSvi9dVgHxG0lismMgG2k,6861
|
|
10
|
+
devduck/tools/tcp.py,sha256=HkJ_j1t7hsPMxNL51bYHvPkHoTfro9Nov6vClwvwkEk,21943
|
|
11
|
+
devduck/tools/use_github.py,sha256=nr3JSGk48mKUobpgW__2gu6lFyUj93a1XRs3I6vH8W4,13682
|
|
12
|
+
devduck/tools/websocket.py,sha256=lRJZt813iHorVr5UI66Lq-lmaFuLYAfpodeV2gtda7k,16635
|
|
13
|
+
devduck-0.3.0.dist-info/licenses/LICENSE,sha256=CVGEiNh6cW1mgAKW83Q0P4xrQEXvqc6W-rb789W_IHM,1060
|
|
14
|
+
devduck-0.3.0.dist-info/METADATA,sha256=pg0OIugkyVKbHA39NYYBJxr0MRVunCI9-XtwWr9Pcn4,4243
|
|
15
|
+
devduck-0.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
16
|
+
devduck-0.3.0.dist-info/entry_points.txt,sha256=BAMQaIg_BLZQOTk12bT7hy1dE9oGPLt-_dTbI4cnBnQ,40
|
|
17
|
+
devduck-0.3.0.dist-info/top_level.txt,sha256=ySXWlVronp8xHYfQ_Hdfr463e0EnbWuqyuxs94EU7yk,8
|
|
18
|
+
devduck-0.3.0.dist-info/RECORD,,
|
devduck/install.sh
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
# 🦆 DevDuck installer - Extreme minimalist agent
|
|
3
|
-
|
|
4
|
-
echo "🦆 Installing Devduck..."
|
|
5
|
-
|
|
6
|
-
# Check Python
|
|
7
|
-
if ! command -v python3 &> /dev/null; then
|
|
8
|
-
echo "❌ Python 3 not found. Please install Python 3.8+"
|
|
9
|
-
exit 1
|
|
10
|
-
fi
|
|
11
|
-
|
|
12
|
-
# Check Ollama
|
|
13
|
-
if ! command -v ollama &> /dev/null; then
|
|
14
|
-
echo "⚠️ Ollama not found. Installing..."
|
|
15
|
-
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
16
|
-
# macOS
|
|
17
|
-
if command -v brew &> /dev/null; then
|
|
18
|
-
brew install ollama
|
|
19
|
-
else
|
|
20
|
-
curl -fsSL https://ollama.ai/install.sh | sh
|
|
21
|
-
fi
|
|
22
|
-
else
|
|
23
|
-
# Linux
|
|
24
|
-
curl -fsSL https://ollama.ai/install.sh | sh
|
|
25
|
-
fi
|
|
26
|
-
fi
|
|
27
|
-
|
|
28
|
-
# Start ollama service
|
|
29
|
-
echo "🦆 Starting Ollama service..."
|
|
30
|
-
ollama serve &
|
|
31
|
-
sleep 2
|
|
32
|
-
|
|
33
|
-
# Pull a basic model
|
|
34
|
-
echo "🦆 Pulling basic model..."
|
|
35
|
-
ollama pull qwen3:1.7b
|
|
36
|
-
|
|
37
|
-
# Test devduck
|
|
38
|
-
echo "🦆 Testing Devduck..."
|
|
39
|
-
python3 __init__.py "what's 5*7?"
|
|
40
|
-
|
|
41
|
-
echo "✅ Devduck installed successfully!"
|
|
42
|
-
echo "Usage: python3 __init__.py 'your question'"
|
devduck-0.2.0.dist-info/RECORD
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
devduck/__init__.py,sha256=w7H7wKWkeD0fKUhLMJ4dxxrWCkRH_R7w3maxjJI0WgU,51881
|
|
2
|
-
devduck/__main__.py,sha256=aeF2RR4k7lzSR2X1QKV9XQPCKhtsH0JYUv2etBBqmL0,145
|
|
3
|
-
devduck/_version.py,sha256=Dg8AmJomLVpjKL6prJylOONZAPRtB86LOce7dorQS_A,704
|
|
4
|
-
devduck/install.sh,sha256=tYq2WWZFCBEMbxCneKAw3GSNAG1zNhpd-kzW1l5ZISw,990
|
|
5
|
-
devduck/test_redduck.py,sha256=nqRchR7d54jWGx7JN5tji2ZV4Ek4L9s-P7hp0mKjA0Y,1773
|
|
6
|
-
devduck/tools/__init__.py,sha256=mu3V4jL2ACN4f-pnUID_A2p6o3Yc_-V_y9071PduCR0,177
|
|
7
|
-
devduck/tools/install_tools.py,sha256=wm_67b9IfY-2wRuWgxuEKhaSIV5vNfbGmZL3G9dGi2A,10348
|
|
8
|
-
devduck/tools/mcp_server.py,sha256=oyF1gb7K-OlxyJLUO3L-vNo2ajKzIrcnT1crwKMOkhU,20118
|
|
9
|
-
devduck/tools/tcp.py,sha256=4KtyRlgaOLKXT3PU0yFRM79FoOkn3-S10dVL4L5iG80,22063
|
|
10
|
-
devduck/tools/websocket.py,sha256=ryKE1WbfaTFguwp-AzJlyCOifHE5uXJAVdHD8jecJgQ,16681
|
|
11
|
-
devduck-0.2.0.dist-info/licenses/LICENSE,sha256=CVGEiNh6cW1mgAKW83Q0P4xrQEXvqc6W-rb789W_IHM,1060
|
|
12
|
-
devduck-0.2.0.dist-info/METADATA,sha256=yl_DpWxBYGIWkbehwUFH-jyD7W1O945cRCJsE9Ufzew,3902
|
|
13
|
-
devduck-0.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
14
|
-
devduck-0.2.0.dist-info/entry_points.txt,sha256=BAMQaIg_BLZQOTk12bT7hy1dE9oGPLt-_dTbI4cnBnQ,40
|
|
15
|
-
devduck-0.2.0.dist-info/top_level.txt,sha256=ySXWlVronp8xHYfQ_Hdfr463e0EnbWuqyuxs94EU7yk,8
|
|
16
|
-
devduck-0.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|