Actuent
computer.org

IEEE Computer Society

Opens in a new window Opens an external website Opens an external website in a new window

55
Partly agent-ready
Agent-readiness score out of 100
  • ✓ Clear description of the site
  • ✓ Several pages described
  • ✓ Actions agents can take
  • ✓ 3 or more actions
  • ○ Publishes its own LAWP (/.well-known/lawp.json)
  • ○ Actions agents can execute
  • ○ Business details (address, hours, phone)

How to improve this score

Up to +45 points:
+15 · Publishes its own LAWP (/.well-known/lawp.json)
Publish your starter lawp.json at /.well-known/lawp.json. WordPress: install the Actuent plugin. Cloudflare: use the one-click Worker.
+15 · Actions agents can execute
Give an action an endpoint on your domain so agents can do it for the user, not just link to it. See LAWP Actions.
+15 · Business details (address, hours, phone)
Add schema.org business data to your homepage (the starter snippet). Google uses it too.
Starter lawp.json for computer.org
Made from what Actuent already knows. Edit it, then publish it at https://computer.org/.well-known/lawp.json. Check it with the LAWP Checker, or edit it in the LAWP Generator.
{
  "lawp_version": "0.3",
  "domain": "computer.org",
  "name": "IEEE Computer Society",
  "language": "en",
  "pages": {
    "/": {
      "title": "IEEE Computer Society",
      "content": "Opens in a new window Opens an external website Opens an external website in a new window"
    },
    "/cfp/services-2022": {
      "title": "Call for Papers: IEEE SERVICES IEEE Computer Society",
      "content": "IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Governors Newsletters Pr"
    },
    "/advertising/techleader-events": {
      "title": "TechLeader Events",
      "content": "IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Governors Newsletters Pr"
    },
    "/press-room/2018-news/ieee-services-2018": {
      "title": "Paper Deadline Extended for IEEE 2018 World Congress on Services, IEEE SERVICES 2018",
      "content": "IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Governors Newsletters Pr"
    },
    "/press-room/2016-news/cloud-computing-book": {
      "title": "New Encyclopedia of Cloud Computing Presents a Holistic View of the Clouds",
      "content": "IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Governors Newsletters Pr"
    },
    "/press-room/2020-news/vis-2020-features-tableau-as-platinum-sponsor": {
      "title": "VIS 2020 Features Tableau as Platinum Sponsor",
      "content": "IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Governors Newsletters Pr"
    },
    "/publications/spread-the-word-about-your-research-through-social-media": {
      "title": "Share Your Research IEEE Computer Society",
      "content": "IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Governors Newsletters Pr"
    },
    "/publications/tech-news/research/optimizing-open-click-through-rates-of-email-against-spam": {
      "title": "Delivering Genuine Emails in an Ocean of Spam",
      "content": "IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Governors Newsletters Pr"
    },
    "/digital-library/magazines/it/it-professional-plans-a-special-issue-on-innovations-using-blockchain": {
      "title": "CLOSED IT Professional Special Issue on Innovations Using Blockchain",
      "content": "IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Governors Newsletters Pr"
    }
  },
  "actions": [
    {
      "id": "contact",
      "name": "Contact",
      "input": {
        "type": "text",
        "required": false
      },
      "intent": [
        "contact",
        "get in touch",
        "email",
        "message",
        "support"
      ],
      "description": "Get in touch with the site owner"
    },
    {
      "id": "sign_up",
      "name": "Sign up",
      "input": {
        "type": "text",
        "required": false
      },
      "intent": [
        "sign up",
        "register",
        "join",
        "create account",
        "get started"
      ],
      "description": "Create an account"
    },
    {
      "id": "view_cart",
      "name": "View cart",
      "input": {
        "type": "text",
        "required": false
      },
      "intent": [
        "cart",
        "basket",
        "checkout",
        "order"
      ],
      "description": "See the shopping cart and check out"
    }
  ]
}
Starter schema.org snippet
Replace the example values, then paste into your homepage's <head>.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "IEEE Computer Society",
  "url": "https://computer.org",
  "telephone": "+00 0000 0000",
  "priceRange": "€€",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "Street 1",
    "postalCode": "0000",
    "addressLocality": "City",
    "addressCountry": "DK"
  },
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": [
        "Monday",
        "Tuesday",
        "Wednesday",
        "Thursday",
        "Friday"
      ],
      "opens": "09:00",
      "closes": "17:00"
    }
  ]
}
</script>

What AI agents can do here

Contact
Get in touch with the site owner
contactget in touchemailmessagesupport
Sign up
Create an account
sign upregisterjoincreate accountget started
View cart
See the shopping cart and check out
cartbasketcheckoutorder

Pages

IEEE Computer Society /
Opens in a new window Opens an external website Opens an external website in a new window
Call for Papers: IEEE SERVICES IEEE Computer Society /cfp/services-2022
IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Gove
TechLeader Events /advertising/techleader-events
IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Gove
Paper Deadline Extended for IEEE 2018 World Congress on Services, IEEE SERVICES 2018 /press-room/2018-news/ieee-services-2018
IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Gove
New Encyclopedia of Cloud Computing Presents a Holistic View of the Clouds /press-room/2016-news/cloud-computing-book
IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Gove
VIS 2020 Features Tableau as Platinum Sponsor /press-room/2020-news/vis-2020-features-tableau-as-platinum-sponsor
IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Gove
Share Your Research IEEE Computer Society /publications/spread-the-word-about-your-research-through-social-media
IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Gove
Delivering Genuine Emails in an Ocean of Spam /publications/tech-news/research/optimizing-open-click-through-rates-of-email-against-spam
IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Gove
CLOSED IT Professional Special Issue on Innovations Using Blockchain /digital-library/magazines/it/it-professional-plans-a-special-issue-on-innovations-using-blockchain
IEEE.org IEEE CS Standards Career Center About Us Subscribe to Newsletter 0 Sign In IEEE-CS LogoTM-orange MEMBERSHIP CONFERENCES PUBLICATIONS EDUCATION & CAREER VOLUNTEER ABOUT Join Us IEEE-CS LogoTM-orange 0 Sign up for our newsletter IEEE COMPUTER SOCIETY About Us Board of Gove

For AI agents

Get this site as structured JSON:
GET https://api.actuent.ai/api/search?q=computer.org
Or connect Actuent to ChatGPT or Claude: https://agents.actuent.ai/api/mcp
Last updated 26 Sep 2026

Is this your site?

Claim computer.org to edit what AI agents see, make your actions executable, and show your score:
Claim this site →   WordPress, Cloudflare & Shopify →
Show your score: <script src="https://api.actuent.ai/badge.js" data-domain="computer.org" async></script> or the image https://api.actuent.ai/badge.svg?domain=computer.org&style=card

Actuent is a search engine for AI agents, made by localilabs. Data is generated automatically from public web content and may be incomplete.