mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-09-14 11:57:23 +00:00
Compare commits
6 Commits
824124ea92
...
5cbdc5db5b
Author | SHA1 | Date | |
---|---|---|---|
|
5cbdc5db5b | ||
|
5d35e71e22 | ||
|
96394efe47 | ||
|
34dcfa4842 | ||
|
5a3b176741 | ||
|
995158a2f2 |
20
.devcontainer/devcontainer.json
Normal file
20
.devcontainer/devcontainer.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"image": "mcr.microsoft.com/devcontainers/universal:2",
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"ms-vscode.azure-account",
|
||||
"ms-python.python",
|
||||
"ms-toolsai.jupyter",
|
||||
"ms-vscode.cpptools",
|
||||
"ms-azuretools.vscode-docker"
|
||||
]
|
||||
}
|
||||
},
|
||||
"settings": {
|
||||
"terminal.integrated.shell.linux": "/bin/bash",
|
||||
"python.pythonPath": "/usr/local/bin/python3",
|
||||
"editor.formatOnSave": true
|
||||
},
|
||||
"postCreateCommand": "pip install -r requirements.txt"
|
||||
}
|
27
.github/workflows/makefile.yml
vendored
Normal file
27
.github/workflows/makefile.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
name: Makefile CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: configure
|
||||
run: ./configure
|
||||
|
||||
- name: Install dependencies
|
||||
run: make
|
||||
|
||||
- name: Run check
|
||||
run: make check
|
||||
|
||||
- name: Run distcheck
|
||||
run: make distcheck
|
24
.ipynb_checkpoints/Untitled-checkpoint.ipynb
Normal file
24
.ipynb_checkpoints/Untitled-checkpoint.ipynb
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
"cells": [],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"display_name": "Python 3 (ipykernel)",
|
||||
"language": "python",
|
||||
"name": "python3"
|
||||
},
|
||||
"language_info": {
|
||||
"codemirror_mode": {
|
||||
"name": "ipython",
|
||||
"version": 3
|
||||
},
|
||||
"file_extension": ".py",
|
||||
"mimetype": "text/x-python",
|
||||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.12.1"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 5
|
||||
}
|
6
.vscode/settings.json
vendored
Normal file
6
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"DockerRun.DisableDockerrc": true,
|
||||
"python.pythonPath": "/usr/local/bin/python3",
|
||||
"editor.formatOnSave": true,
|
||||
"terminal.integrated.shell.linux": "/bin/bash"
|
||||
}
|
15
README.md
15
README.md
@ -1,20 +1,5 @@
|
||||
# **FULL v0, Cursor, Manus, Same.dev, Lovable, Devin, Replit Agent, Windsurf Agent, VSCode Agent, Dia Browser, Trae AI, Cluely, Perplexity, Xcode, Spawn & Orchids.app (And other Open Sourced) System Prompts, Tools & AI Models**
|
||||
|
||||
---
|
||||
|
||||
# Tired of buiding trash games with generic AI tools?
|
||||
<a href="https://spawn.co" target="_blank" rel="noopener noreferrer">
|
||||
<img width="200" height="200" alt="Spawn.co Logo" src="https://github.com/user-attachments/assets/669cef9b-eec1-4add-9a02-fb7e12602126" align="right" />
|
||||
</a>
|
||||
|
||||
Stop **prototyping**. Start **shipping**.
|
||||
|
||||
While other tools get stuck on prompts, [spawn.co](https://www.spawn.co/) uses cutting-edge AI to build and deploy complete games. I've spawned 4 complete game variants in under 20 minutes. Not prototypes - actual playable games with save systems, multiplayer, monetization ready to ship.
|
||||
|
||||
It’s not marketing fluff, it’s just a better way to build.
|
||||
|
||||
**Build. Ship. Done.**
|
||||
|
||||
---
|
||||
<a href="https://discord.gg/NwzrWErdMU" target="_blank">
|
||||
<img src="https://img.shields.io/discord/1402660735833604126?label=LeaksLab%20Discord&logo=discord&style=for-the-badge" alt="LeaksLab Discord" />
|
||||
|
55
Untitled.ipynb
Normal file
55
Untitled.ipynb
Normal file
@ -0,0 +1,55 @@
|
||||
{
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "994f67e0-ce39-492f-bb9a-088f7885c1d6",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"import numpy as np\n",
|
||||
"import pandas as pd\n",
|
||||
"import matplotlib.pyplot as plt\n",
|
||||
"import seaborn as sns\n",
|
||||
"\n",
|
||||
"# Load dataset\n",
|
||||
"df = pd.read_csv('data.csv')\n",
|
||||
"\n",
|
||||
"# Display first few rows of the dataset\n",
|
||||
"df.head()\n",
|
||||
"\n",
|
||||
"# Summary statistics\n",
|
||||
"df.describe()\n",
|
||||
"\n",
|
||||
"# Data visualization\n",
|
||||
"plt.figure(figsize=(10, 6))\n",
|
||||
"sns.histplot(df['column_name'], bins=30, kde=True)\n",
|
||||
"plt.title('Distribution of Column Name')\n",
|
||||
"plt.xlabel('Column Name')\n",
|
||||
"plt.ylabel('Frequency')\n",
|
||||
"plt.show()\n"
|
||||
]
|
||||
}
|
||||
],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"display_name": "Python 3 (ipykernel)",
|
||||
"language": "python",
|
||||
"name": "python3"
|
||||
},
|
||||
"language_info": {
|
||||
"codemirror_mode": {
|
||||
"name": "ipython",
|
||||
"version": 3
|
||||
},
|
||||
"file_extension": ".py",
|
||||
"mimetype": "text/x-python",
|
||||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.12.1"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 5
|
||||
}
|
Loading…
Reference in New Issue
Block a user