Skip to content

Commit 411565c

Browse files
committed
ready to publish
0 parents  commit 411565c

26 files changed

Lines changed: 7287 additions & 0 deletions

.copilot-instructions.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Copilot Instructions for Agent Oriented Programming Seminar
2+
3+
## Project Overview
4+
This project contains seminar content for "Agents: The Next Level of Software" - an educational presentation about Agent Oriented Programming (AOP) for experienced software engineers.
5+
6+
## Target Audience
7+
- Software Engineers with experience in:
8+
- Object-Oriented Programming (OOP)
9+
- REST APIs
10+
- Client-server communication patterns
11+
12+
## Seminar Objectives
13+
Cover the following key topics:
14+
1. **Agent Fundamentals**: What are agents in software development
15+
2. **Agent Oriented Programming (AOP)**: Core concepts and principles
16+
3. **Paradigm Comparison**: Traditional vs. Agentic programming approaches
17+
4. **Communication Technologies**:
18+
- Model Context Protocol (MCP)
19+
- Agent-to-Agent (A2A) communication
20+
5. **Development Frameworks**:
21+
- Agent Development Kit (ADK)
22+
- LangChain
23+
- LangGraph
24+
- Other relevant frameworks
25+
6. **Practical Examples**: Project samples demonstrating MCP and A2A with ADK in Python
26+
27+
## Content Guidelines
28+
- Focus on practical, implementable concepts
29+
- Bridge from familiar OOP concepts to agent concepts
30+
- Include code examples and demonstrations
31+
- Emphasize real-world applications and use cases
32+
- Maintain technical depth appropriate for experienced developers
33+
34+
## File Structure
35+
- Slides in markdown format for easy editing and version control
36+
- Code samples in Python using ADK framework
37+
- Documentation and references for further learning
38+
39+
## Technical Focus Areas
40+
- Agent architecture patterns
41+
- Inter-agent communication protocols
42+
- Agent lifecycle management
43+
- Integration with existing software systems
44+
- Best practices for agent development

.gitignore

Lines changed: 225 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
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+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
.pybuilder/
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# poetry
98+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99+
# This is especially recommended for binary packages to ensure reproducibility, and is more
100+
# commonly ignored for libraries.
101+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102+
#poetry.lock
103+
104+
# pdm
105+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106+
#pdm.lock
107+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108+
# in version control.
109+
# https://pdm.fming.dev/#use-with-ide
110+
.pdm.toml
111+
112+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113+
__pypackages__/
114+
115+
# Celery stuff
116+
celerybeat-schedule
117+
celerybeat.pid
118+
119+
# SageMath parsed files
120+
*.sage.py
121+
122+
# Environments
123+
.env
124+
.venv
125+
.venv/*
126+
env/
127+
venv/
128+
ENV/
129+
env.bak/
130+
venv.bak/
131+
132+
# Spyder project settings
133+
.spyderproject
134+
.spyproject
135+
136+
# Rope project settings
137+
.ropeproject
138+
139+
# mkdocs documentation
140+
/site
141+
142+
# mypy
143+
.mypy_cache/
144+
.dmypy.json
145+
dmypy.json
146+
147+
# Pyre type checker
148+
.pyre/
149+
150+
# pytype static type analyzer
151+
.pytype/
152+
153+
# Cov.py
154+
.coverage
155+
156+
# Pycache
157+
*.pyc
158+
159+
# IDE files
160+
.vscode/
161+
.idea/
162+
*.swp
163+
*.swo
164+
*~
165+
166+
# OS generated files
167+
.DS_Store
168+
.DS_Store?
169+
._*
170+
.Spotlight-V100
171+
.Trashes
172+
ehthumbs.db
173+
Thumbs.db
174+
175+
# Windows
176+
*.exe
177+
*.msi
178+
*.lnk
179+
180+
# Temporary files
181+
*.tmp
182+
*.temp
183+
*.bak
184+
*.backup
185+
186+
# Logs
187+
*.log
188+
logs/
189+
190+
# Node modules (if using npm/node for any tooling)
191+
node_modules/
192+
npm-debug.log*
193+
yarn-debug.log*
194+
yarn-error.log*
195+
196+
# Package files
197+
*.tgz
198+
*.tar.gz
199+
*.zip
200+
*.rar
201+
202+
# Database files
203+
*.db
204+
*.sqlite
205+
*.sqlite3
206+
207+
# Configuration files with sensitive data
208+
config.ini
209+
.config
210+
secrets.json
211+
.secrets
212+
213+
# MCP Server specific
214+
mcp_servers/*/logs/
215+
mcp_servers/*/*.log
216+
mcp_servers/*/tmp/
217+
218+
# Agent cache and temporary files
219+
agents/*/cache/
220+
agents/*/temp/
221+
*.cache
222+
223+
# Project specific
224+
slides/.cache/
225+
slides/temp/

0 commit comments

Comments
 (0)