diff --git a/.github/workflows/blog-post-workflow.yml b/.github/workflows/blog-post-workflow.yml index a27d973..e5de349 100644 --- a/.github/workflows/blog-post-workflow.yml +++ b/.github/workflows/blog-post-workflow.yml @@ -11,7 +11,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Pull in dev.to posts - uses: gautamkrishnar/blog-post-workflow@master + - name: Pull in blogs.cisco.com/developer posts + uses: gautamkrishnar/blog-post-workflow@v1 with: - feed_list: "http://blogs.cisco.com/developer/feed" \ No newline at end of file + feed_list: "http://blogs.cisco.com/developer/feed" + readme_path: ./profile/README.md diff --git a/.github/workflows/youtube-workflow.yml b/.github/workflows/youtube-workflow.yml index a3c0719..796fd53 100644 --- a/.github/workflows/youtube-workflow.yml +++ b/.github/workflows/youtube-workflow.yml @@ -11,8 +11,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Pull in dev.to posts - uses: gautamkrishnar/blog-post-workflow@master + - name: Pull in CiscoDevNet YouTube videos + uses: gautamkrishnar/blog-post-workflow@v1 with: comment_tag_name: "YOUTUBE" - feed_list: "https://www.youtube.com/feeds/videos.xml?channel_id=UChRmUH4H5hiYzPiFhvNoCIg" \ No newline at end of file + feed_list: "https://www.youtube.com/feeds/videos.xml?channel_id=UChRmUH4H5hiYzPiFhvNoCIg" + readme_path: ./profile/README.md diff --git a/README.md b/README.md index 3eb6425..f82a234 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ -![DevNetBanner](./images/devnet_banner.jpeg) +# Cisco DevNet -Cisco DevNet ( developer.cisco.com ) is Cisco’s developer program to help developers and IT professionals who want to write applications and develop integrations with Cisco products, platforms, and APIs. Cisco DevNet includes Cisco’s products in software-defined networking, security, cloud, data center, mobility, internet of things, collaboration, services, and open-source software development. The developer.cisco.com site also provides learning and sandbox environments as well as video series for those trying to learn coding and testing apps. +> [!IMPORTANT] +> If you are looking to update the readme displayed on https://github.com/CiscoDevNet go to the [profile/README](profile/README.md) file. -The industry comes to DevNet to find Cisco Community resources like Code Exchange which includes code repositories related to Cisco technologies, Ecosystem Exchange to connect with the Global Cisco Partner Ecosystem and find solutions, and now DevNet Automation Exchange which is the industry-leading code repository of network automation use cases. +DevNet Banner

Cisco DevNet, found at [developer.cisco.com](https://developer.cisco.com), is Cisco’s developer program to help developers and IT professionals who want to write applications and develop integrations with Cisco products, platforms, and APIs. Cisco DevNet includes Cisco’s products in software-defined networking, security, cloud, data center, internet of things, collaboration, and Cisco customer experience. The [developer.cisco.com](https://developer.cisco.com) site also provides [docs](https://developer.cisco.com/docs), [tutorials](https://developer.cisco.com/learning), and [sandbox environments](https://developer.cisco.com/site/sandbox) as well as video series to learn coding and testing apps.

ciscodevnet

@@ -15,44 +16,11 @@ The industry comes to DevNet to find Cisco Community resources like Code Exchang

Connect with DevNet:

ciscodevnet -https://www.linkedin.com/company/cisco-devnet/ -https://www.facebook.com/ciscodevnet -https://www.instagram.com/ciscodevnet/ -https://www.youtube.com/c/ciscodevnetchannel +https://www.linkedin.com/company/cisco-devnet/ +https://www.facebook.com/ciscodevnet +https://www.instagram.com/ciscodevnet/ +https://www.youtube.com/c/ciscodevnetchannel

-

Pinned Repos:

-

- - - - - - - - - - - - -

Languages and Tools:

bash docker git go html5 javascript kubernetes linux vagrant

- -# Latest YouTube Videos - -- [Cisco Live: DevNet Zone Livestream - Tuesday June 14, 2022 - PM Sessions](https://www.youtube.com/watch?v=pKZBb0nq1JM) -- [Cisco Live 2022 ~ DevNet Zone Day 1 Recap](https://www.youtube.com/watch?v=iecKrz3_yXk) -- [Cisco Live: DevNet Zone Livestream - Monday June 13, 2022 - PM Sessions](https://www.youtube.com/watch?v=9YuyFs_BTG8) -- [Cisco Live: DevNet Zone Livestream - Monday June 13, 2022 - AM Sessions](https://www.youtube.com/watch?v=XJ0VHIV2Nm8) -- [APIx Manager Preview](https://www.youtube.com/watch?v=n3kn-NTfiV0) - - -# Latest Blog posts - -- [Cisco Live Day 1: Wrap-up from the DevNet Zone](https://blogs.cisco.com/developer/devnetzoneday01) -- [Cisco SecureX Is Taking Over the DevNet Zone on Tuesday](https://blogs.cisco.com/developer/securexdevnetzone01) -- [Cisco Live is Here](https://blogs.cisco.com/developer/ciscolivestartstomorrow01) -- [Custom Application Troubleshooting With Cisco IOx](https://blogs.cisco.com/developer/ioxapplicationtroubleshooting01) -- [Metrics that Matter](https://blogs.cisco.com/developer/metricsthatmatter01) - \ No newline at end of file diff --git a/docs/AGENTS.md b/docs/AGENTS.md new file mode 100644 index 0000000..6b37ad5 --- /dev/null +++ b/docs/AGENTS.md @@ -0,0 +1,52 @@ +AGENTS.md is a simple, open format for guiding AI agents. + +Edit the following template to provide users with a better experience when working with coding agents (VS Code, GitHub Copilot, Cursor, Codex, Gemini CLI, etc.). + +Provide the agent with information on which documentation and/or OpenAPI spec document to use. +For example, you can paste a direct link to the latest OpenAPI spec. +Direct link for Cisco Secure Access Authorization API: +https://pubhub.devnetcloud.com/media/cloud-security-apis-in-eft/docs/secure-access/reference/auth/cisco_secure_access_token_authorization_api_2_0_0.yaml + +Add information about the MCP servers needed for the project. + +You can add a link to the Cisco DevNet sandbox needed to work with the project. +Choose the direct link from the list here: https://devnetsandbox.cisco.com/DevNet + +Additionally, you can provide information about the version and link to the SDK, Infrastructure as Code provider/module, etc., which is recommended for use by coding Agents. + +Example of AGENTS.md file at Cisco DevNet GitHub org: https://github.com/CiscoDevNet/python_code_samples_network/blob/master/AGENTS.md + +# Template: + +## Dev environment tips + +- **Python version**: Use Python 3.9+. +- **Virtual env (recommended)**: + ```bash + python3 -m venv .venv + source .venv/bin/activate + python -m pip install -U pip + ``` + +### Quick run examples + + +## Testing instructions + +- **MCP server links** + +- **Test the code with the Cisco DevNet sandbox** + + Visit https://devnetsandbox.cisco.com/DevNet to book a related sandbox. + +- **Latest Cisco API documentation**: + + https://developer.cisco.com/docs/ + +## PR instructions + +- **Security**: Do not commit real credentials or tokens. Use placeholders and document required env vars or files. + +## Contribution conventions + +- **Backward compatibility**: Do not change existing sample behavior unless clearly improving or fixing a bug; document changes. diff --git a/docs/CODE_OF_CONDUCT.md b/docs/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..8af3c79 --- /dev/null +++ b/docs/CODE_OF_CONDUCT.md @@ -0,0 +1,79 @@ + +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to make participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +- Using welcoming and inclusive language +- Being respectful of differing viewpoints and experiences +- Gracefully accepting constructive criticism +- Focusing on what is best for the community +- Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +- The use of sexualized language or imagery and unwelcome sexual attention or + advances +- Trolling, insulting/derogatory comments, and personal or political attacks +- Public or private harassment +- Publishing others' private information, such as a physical or electronic + address, without explicit permission +- Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies within all project spaces, and it also applies when +an individual is representing the project or its community in public spaces. +Examples of representing a project or community include using an official +project e-mail address, posting via an official social media account, or acting +as an appointed representative at an online or offline event. Representation of +a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at [oss-conduct@cisco.com][conduct-email]. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +[conduct-email]: mailto:oss-conduct@cisco.com + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see +https://www.contributor-covenant.org/faq diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md new file mode 100644 index 0000000..7bd83d5 --- /dev/null +++ b/docs/CONTRIBUTING.md @@ -0,0 +1,47 @@ +# How to Contribute + +Thanks for your interest in contributing to ``! Here are a few general guidelines on contributing and +reporting bugs that we ask you to review. Following these guidelines helps to communicate that you respect the time of +the contributors managing and developing this open source project. In return, they should reciprocate that respect in +addressing your issue, assessing changes, and helping you finalize your pull requests. In that spirit of mutual respect, +we endeavor to review incoming issues and pull requests within 10 days, and will close any lingering issues or pull +requests after 60 days of inactivity. + +Please note that all of your interactions in the project are subject to our [Code of Conduct](/CODE_OF_CONDUCT.md). This +includes creation of issues or pull requests, commenting on issues or pull requests, and extends to all interactions in +any real-time space e.g., Slack, Discord, etc. + +## Reporting Issues + +Before reporting a new issue, please ensure that the issue was not already reported or fixed by searching through our +[issues list](https://github.com/org_name/repo_name/issues). + +When creating a new issue, please be sure to include a **title and clear description**, as much relevant information as +possible, and, if possible, a test case. + +**If you discover a security bug, please do not report it through GitHub. Instead, please see security procedures in +[SECURITY.md](/SECURITY.md).** + +## Sending Pull Requests + +Before sending a new pull request, take a look at existing pull requests and issues to see if the proposed change or fix +has been discussed in the past, or if the change was already implemented but not yet released. + +We expect new pull requests to include tests for any affected behavior, and, as we follow semantic versioning, we may +reserve breaking changes until the next major version release. + +## Other Ways to Contribute + +We welcome anyone that wants to contribute to `` to triage and reply to open issues to help troubleshoot +and fix existing bugs. Here is what you can do: + +- Help ensure that existing issues follows the recommendations from the _[Reporting Issues](#reporting-issues)_ section, + providing feedback to the issue's author on what might be missing. +- Review and update the existing content of our [Wiki](https://github.com/org_name/repo_name/wiki) with up-to-date + instructions and code samples. +- Review existing pull requests, and testing patches against real existing applications that use ``. +- Write a test, or add a missing test case to an existing test. + +Thanks again for your interest on contributing to ``! + +:heart: diff --git a/docs/SECURITY.md b/docs/SECURITY.md new file mode 100644 index 0000000..210a9c1 --- /dev/null +++ b/docs/SECURITY.md @@ -0,0 +1,39 @@ +# Security Policies and Procedures + +This document outlines security procedures and general policies for the +`` project. + +- [Reporting a Bug](#reporting-a-bug) +- [Disclosure Policy](#disclosure-policy) +- [Comments on this Policy](#comments-on-this-policy) + +## Reporting a Bug + +The `` team and community take all security bugs in +`` seriously. Thank you for improving the security of +``. We appreciate your efforts and responsible disclosure and +will make every effort to acknowledge your contributions. + +Report security bugs by emailing `oss-security@cisco.com`. + +The lead maintainer will acknowledge your email within 48 hours, and will send a +more detailed response within 48 hours indicating the next steps in handling +your report. After the initial reply to your report, the security team will +endeavor to keep you informed of the progress towards a fix and full +announcement, and may ask for additional information or guidance. + +## Disclosure Policy + +When the security team receives a security bug report, they will assign it to a +primary handler. This person will coordinate the fix and release process, +involving the following steps: + +- Confirm the problem and determine the affected versions. +- Audit code to find any potential similar problems. +- Prepare fixes for all releases still under maintenance. These fixes will be + released as quickly as possible. + +## Comments on this Policy + +If you have suggestions on how this process could be improved please submit a +pull request. diff --git a/images/devnet_banner.jpeg b/images/devnet_banner.jpeg index f3c1d51..a595138 100644 Binary files a/images/devnet_banner.jpeg and b/images/devnet_banner.jpeg differ diff --git a/profile/README.md b/profile/README.md index 92c2bbc..d1d3996 100644 --- a/profile/README.md +++ b/profile/README.md @@ -1,58 +1,55 @@ -![DevNetBanner](./images/devnet_banner.jpeg) - -Cisco DevNet ( developer.cisco.com ) is Cisco’s developer program to help developers and IT professionals who want to write applications and develop integrations with Cisco products, platforms, and APIs. Cisco DevNet includes Cisco’s products in software-defined networking, security, cloud, data center, mobility, internet of things, collaboration, services, and open-source software development. The developer.cisco.com site also provides learning and sandbox environments as well as video series for those trying to learn coding and testing apps. - -The industry comes to DevNet to find Cisco Community resources like Code Exchange which includes code repositories related to Cisco technologies, Ecosystem Exchange to connect with the Global Cisco Partner Ecosystem and find solutions, and now DevNet Automation Exchange which is the industry-leading code repository of network automation use cases. +DevNet Banner

Cisco DevNet, found at [developer.cisco.com](https://developer.cisco.com), is Cisco’s developer program to help developers and IT professionals who want to write applications and develop integrations with Cisco products, platforms, and APIs. Cisco DevNet includes Cisco’s products in software-defined networking, security, cloud, data center, Internet of Things, collaboration, and Cisco customer experience. The [developer.cisco.com](https://developer.cisco.com) site also provides [docs](https://developer.cisco.com/docs), [tutorials](https://developer.cisco.com/learning), [code examples](https://developer.cisco.com/codeexchange/), and [sandbox environments](https://developer.cisco.com/site/sandbox) as well as video series to learn coding and testing apps.

ciscodevnet

- Developer Blogs [https://blogs.cisco.com/developer](https://blogs.cisco.com/developer) -- How to reach us **devnet-github-owners@cisco.com** +- If you have a GitHub-related request, don't hesitate to get in touch with **devnet-github-owners@cisco.com** with a description of your request. -- Join DevNet to get the tools, resources and code to build network-enabled solutions https://developer.cisco.com/join/devnet/ +- Join DevNet to get the tools, resources, and code to build network-enabled solutions https://developer.cisco.com/join/devnet/

Connect with DevNet:

-

-ciscodevnet -https://www.linkedin.com/company/cisco-devnet/ -https://www.facebook.com/ciscodevnet -https://www.instagram.com/ciscodevnet/ -https://www.youtube.com/c/ciscodevnetchannel -

- -

Pinned Repos:

-

- - - - - - - - - - - + + + + + + + + +
TwitterLinkedInFacebookInstagramYouTubeApple PodcastsSpotify

Languages and Tools:

-

bash docker git go html5 javascript kubernetes linux vagrant

+ + + + + + + + + + + + + +
BashDockerGitGoHTML5JavaScriptKubernetesLinuxVagrantMCPLangChain
# Latest YouTube Videos -- [Learn about the new reservable Cisco Certified Internetwork Expert (CCIE) practice labs! Ep 59.](https://www.youtube.com/watch?v=rbIktoldsrY) -- [Cisco ThousandEyes for CloudDevs - Part 3](https://www.youtube.com/watch?v=JLhUChLC4ms) -- [Cisco ThousandEyes for CloudDevs - Part 1](https://www.youtube.com/watch?v=d4-6qzP2DfY) -- [Network Security Automation with Cisco Secure Firewall & Hashicorp's Consul Terraform Sync](https://www.youtube.com/watch?v=sEvNaed5DTI) -- [See the new updates and sneak peeks of new features with YANG Suite. Ep 58.](https://www.youtube.com/watch?v=soyWPr0fJ0s) +- [Network Observability with Streaming Telemetry](https://www.youtube.com/watch?v=eq642x54lM4) +- [Getting Started with Netlab - Network Labs Made Easy - Part 2 | Ep. 108](https://www.youtube.com/watch?v=tZRbSu9eg44) +- [Say It, Don't Script It: Automating CML | Ep. 109](https://www.youtube.com/watch?v=62FhYlXaRz0) +- [Automated Network Testing with pyATS](https://www.youtube.com/watch?v=EUErwwdIpkk) +- [Network AI Agents in Action - Part 2 | Ep. 107](https://www.youtube.com/watch?v=ot5vnWVDHxk) # Latest Blog posts -- [Run Your IoT Applications on an IP67 Industrial Router](https://blogs.cisco.com/developer/applicationsonip67) -- [Perfect is the Enemy of the Good: A Lesson on Uptime](https://blogs.cisco.com/developer/perfectisenemyofgood01) -- [Take a Look at Cisco ThousandEyes for Cloud Developers](https://blogs.cisco.com/developer/thousandeyesforclouddevelopers01) -- [Try Automating a YubiKey Button Press](https://blogs.cisco.com/developer/automatingyubikey01) -- [Cisco Cloud Native Security – Part 3, GitOps and CI/CD](https://blogs.cisco.com/developer/cloudnativesecurity03) +- [Watch a Hybrid Post-Quantum Handshake on the Wire – IPsec Series, Part 4](https://blogs.cisco.com/developer/watch-a-hybrid-post-quantum-handshake-on-the-wire-ipsec-series-part-4/) +- [ML-KEM vs Diffie-Hellman: The Showdown – IPsec Series, Part 3](https://blogs.cisco.com/developer/ml-kem-vs-diffie-hellman-the-showdown-ipsec-series-part-3/) +- [Harvest Now, Decrypt Later: The Threat to Key Exchange – IPsec Series, Part 2](https://blogs.cisco.com/developer/harvest-now-decrypt-later-the-threat-to-key-exchange-quantum-series-part-2/) +- [Beyond CMDB Sync: Cisco Catalyst Center for ITSM Workflows](https://blogs.cisco.com/developer/beyond-cmdb-sync-cisco-catalyst-center-for-itsm-workflows/) +- [Is Your VPN Ready for the Quantum Era? – IPsec Series, Part 1](https://blogs.cisco.com/developer/is-your-vpn-ready-for-the-quantum-era-quantum-series-part-1/)